/* =========================================
   BALKAN BITES ATELIER - COMPLETE CSS
   WARM & APPETIZING CATERING PALETTE
   ========================================= */

/* =========================================
   1. CSS VARIABLES - EXACT CATERING PALETTE
   Refined for visual harmony & balance
   ========================================= */
:root {
    /* PRIMARY - Warm Coral #FF6F61 */
    --primary-color: #FF6F61;
    --primary-dark: #E85D4D;
    --primary-light: #FF8B7B;

    /* SECONDARY - Golden Amber (slightly warmer, less harsh) */
    --secondary-color: #E8A735;
    --secondary-dark: #D49420;
    --secondary-light: #F5C04A;

    /* ACCENT - Fresh Green #6BBE45 */
    --accent-color: #6BBE45;
    --accent-dark: #5AA033;
    --accent-light: #7EC954;

    /* NEUTRALS */
    --neutral-light: #F7F7F7;
    --neutral-dark: #4B4B4B;

    /* BACKGROUNDS */
    --bg-cream: #F7F7F7;
    --bg-white: #FFFFFF;
    --bg-accent: #FFF3E6;
    --bg-dark: #2D2D2D;
    --bg-footer: #3A3A3A;

    /* TEXT COLORS */
    --text-main: #4B4B4B;
    --text-muted: #7A7A7A;
    --text-inverse: #F7F7F7;
    --text-light: #FFFFFF;

    /* FONTS */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* TRANSITIONS & EFFECTS */
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-smooth: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(75, 75, 75, 0.08);
    --shadow-hover: 0 20px 40px rgba(255, 111, 97, 0.2);
    --shadow-strong: 0 25px 50px rgba(75, 75, 75, 0.15);
}

/* =========================================
   2. GLOBAL RESET & BASE STYLES
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =========================================
   3. TEXT ANIMATIONS (NO GRADIENTS)
   ========================================= */

/* Wave Animation */
@keyframes waveAnimation {

    0%,
    100% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-10px);
    }

    75% {
        transform: translateY(10px);
    }
}

.wave-text {
    display: inline-block;
    animation: waveAnimation 1.5s ease-in-out infinite;
}

/* Glow Pulse Animation */
@keyframes glowPulse {
    0% {
        text-shadow: 0 0 10px rgba(255, 111, 97, 0.5),
            0 0 20px rgba(232, 167, 53, 0.3);
    }

    50% {
        text-shadow: 0 0 20px rgba(255, 111, 97, 0.8),
            0 0 40px rgba(232, 167, 53, 0.6);
    }

    100% {
        text-shadow: 0 0 10px rgba(255, 111, 97, 0.5),
            0 0 20px rgba(232, 167, 53, 0.3);
    }
}

.glow-text {
    animation: glowPulse 2s ease-in-out infinite;
    color: var(--primary-light);
}

/* Typewriter Effect */
@keyframes typing {
    from {
        width: 0;
        border-right: 3px solid var(--primary-color);
    }

    to {
        width: 100%;
        border-right: 3px solid transparent;
    }
}

.typewriter-text {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {

    from,
    to {
        border-right-color: var(--primary-color);
    }

    50% {
        border-right-color: transparent;
    }
}

/* Bounce In Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.bounce-text {
    animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Flip Animation */
@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateY(90deg);
    }

    100% {
        opacity: 1;
        transform: perspective(400px) rotateY(0deg);
    }
}

.flip-text {
    animation: flipIn 0.8s ease-out;
}

/* Shimmer Effect */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer-text {
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color),
            var(--primary-color));
    background-size: 1000px 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 2s infinite;
}

/* Letter Spacing Animation */
@keyframes letterSpacing {

    0%,
    100% {
        letter-spacing: 0px;
    }

    50% {
        letter-spacing: 4px;
    }
}

.spaced-text {
    animation: letterSpacing 2s ease-in-out infinite;
}

/* Scale Pulse */
@keyframes scalePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.pulse-text {
    animation: scalePulse 2s ease-in-out infinite;
}

/* Hero Text - SOLID COLOR, NO GRADIENT */
.hero-gradient-text {
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 111, 97, 0.3);
}

/* Spotlight Text - SOLID COLOR */
.spotlight-bright-text {
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 111, 97, 0.3);
}

/* Animated Underline - SOLID */
.hero-animated-underline {
    position: relative;
    display: inline-block;
}

.hero-animated-underline::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 111, 97, 0.6);
}

.gradient-text {
    color: var(--primary-color);
    font-weight: 700;
}

.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.8s ease-out;
}

.section-header.active-reveal .animated-underline::after {
    width: 100%;
}

.stagger-animation>* {
    opacity: 0;
    animation: fadeUp 0.6s ease-out forwards;
}

.stagger-animation>*:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-animation>*:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-animation>*:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-animation>*:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-animation>*:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-animation>*:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* =========================================
   4. REUSABLE COMPONENTS
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 900px;
}

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

.text-white {
    color: var(--text-light) !important;
}

.section {
    padding: 100px 0;
    position: relative;
}

.bg-light {
    background-color: var(--bg-white);
}

.bg-dark {
    background-color: var(--bg-dark) !important;
    color: var(--text-inverse) !important;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bg-dark .section-header h2,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--text-light) !important;
}

.bg-dark .section-header p,
.bg-dark p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.section-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.separator {
    width: 100%;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 15px auto 25px;
    position: relative;
    opacity: 0.7;
}

.separator::after {
    content: '◆';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-cream);
    padding: 0 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.bg-light .separator::after {
    background: var(--bg-white);
}

.bg-dark .separator::after {
    background: var(--bg-dark);
}

.reviews-section .separator::after {
    background: var(--bg-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 700;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 111, 97, 0.4);
}

.btn-transparent {
    border-color: #fff;
    color: #fff;
    background: transparent;
}

.btn-transparent::before {
    background: #fff;
}

.btn-transparent:hover {
    color: var(--text-main);
    border-color: #fff;
}

.btn-transparent-footer {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-transparent-footer::before {
    background: var(--primary-color);
}

.btn-transparent-footer:hover {
    color: #fff;
    border-color: var(--primary-color);
}

.btn-large {
    padding: 18px 45px;
    font-size: 1rem;
}

.btn-large i {
    margin-right: 10px;
}

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

/* =========================================
   5. PAGE LOADER - Balanced Color Harmony
   ========================================= */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-cream);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    text-align: center;
    font-family: var(--font-heading);
}

.loader-text {
    font-size: 2.5rem;
    display: block;
    animation: fadeIn 1s forwards;
    color: var(--primary-color);
    font-weight: 700;
}

.loader-sub {
    font-size: 1.5rem;
    color: var(--neutral-dark);
    font-style: italic;
    font-weight: 400;
    letter-spacing: 1px;
}

.loader-line {
    width: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-color) 0%,
            var(--secondary-color) 50%,
            var(--primary-color) 100%);
    margin: 12px auto;
    animation: growLine 1.5s forwards;
    border-radius: 2px;
}

@keyframes growLine {
    to {
        width: 100px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* =========================================
   6. SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.active-reveal {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Services submenu: chevron rotates when open (mobile) */
.nav-services-details[open] .nav-chevron {
    transform: rotate(180deg);
}

/* Services dropdown: always solid white background */
#main-header nav .group .absolute > div {
    background: #fff !important;
    backdrop-filter: none !important;
}

/* Header active link underline */
.nav-link-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #FF6F61;
    border-radius: 1px;
}

/* =========================================
   8. HERO SLIDER
   ========================================= */
.hero-slider {
    min-height: 100vh;
    min-height: 100dvh;
    height: 100vh;
    height: 100dvh;
    position: relative;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(75, 75, 75, 0.4),
            rgba(75, 75, 75, 0.75));
    z-index: 1;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    padding: 20px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.hero-content-inner {
    max-width: 800px;
    padding-bottom: 90px;
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1s ease-out 0.3s,
        transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.swiper-slide-active .hero-content-inner {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-light);
    margin-bottom: 15px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}

.swiper-slide-active .hero-label {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4rem);
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out 0.7s, transform 0.8s ease-out 0.7s;
}

.swiper-slide-active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.35rem);
    letter-spacing: 3px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 0.9s, transform 0.8s ease-out 0.9s;
}

.swiper-slide-active .hero-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 1.1s, transform 0.8s ease-out 1.1s;
}

.hero-support {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    color: rgba(255, 255, 255, 0.85);
    margin-top: 18px;
    margin-bottom: 0;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 1.3s, transform 0.8s ease-out 1.3s;
}
.swiper-slide-active .hero-support {
    opacity: 1;
    transform: translateY(0);
}

.swiper-slide-active .hero-btns {
    opacity: 1;
    transform: translateY(0);
}

.hero-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out 1.3s, transform 0.8s ease-out 1.3s, color 0.3s ease;
}

.swiper-slide-active .hero-instagram {
    opacity: 1;
    transform: translateY(0);
}

.hero-instagram:hover {
    color: #fff;
}

.hero-instagram i {
    font-size: 1.2rem;
}

.hero-pagination {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 50%;
    transition: var(--transition);
    cursor: pointer;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(255, 111, 97, 0.6);
}

.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 10;
    cursor: pointer;
    transition: var(--transition);
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
    left: 30px;
}

.hero-nav-next {
    right: 30px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-down i {
    font-size: 1.2rem;
}

/* =========================================
   TELETEXT FOOD CAROUSEL (LOOPING MARQUEE)
   Full-width, 2 rows, infinite scroll
   ========================================= */
.food-teletext-carousel {
    width: 100%;
    overflow: hidden;
    background: var(--bg-dark);
    padding: 0;
}

.teletext-track-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.teletext-heading {
    text-align: center;
    color: var(--text-light);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    padding: 1.25rem 1rem;
    letter-spacing: 0.02em;
    text-transform: none;
    font-style: italic;
}

.teletext-heading .gradient-text,
.teletext-heading span.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teletext-row {
    overflow: hidden;
    flex-shrink: 0;
}

.teletext-track {
    display: flex;
    width: max-content;
    gap: 0;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.teletext-row-left .teletext-track {
    animation: teletextScrollLeft 45s linear infinite;
}

.teletext-row-right .teletext-track {
    animation: teletextScrollRight 45s linear infinite;
}

@keyframes teletextScrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes teletextScrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.teletext-item {
    flex-shrink: 0;
    width: 25vw;
    max-width: 320px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.teletext-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop: 4 images visible per row via width */
@media (min-width: 1024px) {
    .teletext-item {
        width: 25vw;
        max-width: 320px;
    }
}

/* Tablet: 3 images visible */
@media (max-width: 1023px) and (min-width: 768px) {
    .teletext-item {
        width: 33.333vw;
        max-width: 400px;
    }
}

/* Mobile: 2 images visible */
@media (max-width: 767px) {
    .teletext-item {
        width: 50vw;
        max-width: none;
    }
}

/* =========================================
   9. SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-color);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    transition: var(--transition);
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-card:hover .read-more i {
    transform: translateX(5px);
}

/* Occasions strip – We Cater */
.occasions-strip {
    padding: 60px 0;
}
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.occasion-card {
    background: #fff;
    padding: 32px 28px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}
.occasion-card:hover {
    box-shadow: var(--shadow-hover);
}
.occasion-icon {
    display: block;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}
.occasion-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}
.occasion-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================
   10. SERVICE MODALS
   ========================================= */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(75, 75, 75, 0.85);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 500px;
    background: #fff;
    padding: 40px;
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    text-align: center;
    border-radius: 4px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.modal-body ul {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.modal-body ul li {
    margin-bottom: 10px;
    list-style-type: disc;
    color: var(--text-muted);
}

.modal .price {
    font-weight: 700;
    font-size: 1.2rem;
    margin: 20px 0;
    color: var(--text-main);
    display: block;
}

/* =========================================
   11. PROCESS SECTION
   ========================================= */
.process-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: stretch;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 40px 20px;
    background: #fff;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    color: rgba(255, 111, 97, 0.1);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-muted);
    line-height: 1.6;
}

.process-connector {
    flex-grow: 0;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--primary-color),
            transparent);
    margin-top: 80px;
    position: relative;
}

.process-connector::after {
    content: '→';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* =========================================
   12. VIDEO SECTION
   ========================================= */
.video-section {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.bg-video.active {
    opacity: 1;
    z-index: 1;
}

.video-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-content {
    position: relative;
    z-index: 2;
}

.video-text-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 50px;
    backdrop-filter: blur(5px);
    background: rgba(75, 75, 75, 0.3);
    max-width: 700px;
    margin: 0 auto;
    border-radius: 4px;
}

.video-text-box h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 20px;
}

.video-label {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    color: var(--primary-light);
}

.play-btn-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    transition: var(--transition);
    margin-top: 20px;
}

.play-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-btn-wrapper:hover .play-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* =========================================
   13. MENU SECTION
   ========================================= */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    color: #999;
    padding-bottom: 5px;
    position: relative;
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--text-main);
}

.tab-btn.active {
    color: var(--text-main);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.menu-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border-bottom: 3px solid transparent;
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-color);
}

.card-image {
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
}

.category-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.menu-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.card-divider {
    width: 40px;
    height: 1px;
    background: var(--primary-light);
    margin: 15px auto;
}

.menu-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}

.menu-card.hide,
.package-card.hide,
.addon-card.hide {
    display: none !important;
}

.menu-card.show,
.package-card.show,
.addon-card.show {
    animation: fadeIn 0.6s ease forwards;
}

/* Mixed grid: packages grid spans full width, addons & menu cards in columns */
.menu-grid-mixed .package-card {
    grid-column: 1 / -1;
}
.menu-grid-mixed .services-grid.packages-grid {
    grid-column: 1 / -1;
    margin-bottom: 0.5rem;
}

.package-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(75, 75, 75, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: var(--transition-smooth);
    border: 1px solid rgba(75, 75, 75, 0.06);
    border-bottom: 3px solid transparent;
    display: block;
}

.package-card:hover {
    box-shadow: 0 12px 36px rgba(75, 75, 75, 0.12), 0 4px 12px rgba(255, 111, 97, 0.08);
    border-bottom-color: var(--primary-color);
    transform: translateY(-2px);
}

.package-card-header {
    padding: 28px 30px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.package-price {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.package-card-header h3 {
    font-size: 1.5rem;
    margin: 0 0 20px;
    color: var(--text-main);
}

.package-card-body {
    padding: 24px 30px 30px;
}

.package-intro {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.package-includes li {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.package-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.package-includes strong {
    color: var(--text-main);
}

.package-for {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* Add-on cards */
.addon-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
    display: block;
}

.addon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--primary-color);
}

.addon-card-content {
    padding: 28px 30px;
    text-align: center;
}

.addon-card-content h3 {
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--text-main);
}

.addon-price {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.addon-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   14. SPOTLIGHT SLIDER
   ========================================= */
.spotlight-section {
    position: relative;
    height: 65vh;
    width: 100%;
    background: #000;
    overflow: hidden;
}

.spotlightSwiper {
    width: 100%;
    height: 100%;
}

.spotlight-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.spotlight-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.swiper-slide-active .spotlight-bg {
    transform: scale(1.15);
}

.spotlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.spotlight-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 20px;
    z-index: 2;
    display: flex;
    justify-content: center;
    text-align: center;
}

.content-wrapper {
    max-width: 800px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.swiper-slide-active .content-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.spotlight-label {
    display: inline-block;
    color: var(--primary-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
    font-weight: 700;
}

.spotlight-content h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.spotlight-line {
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    margin: 0 auto 20px;
}

.spotlight-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.spotlight-content em {
    color: var(--secondary-color);
    font-style: italic;
    font-weight: 600;
}

.spotlight-pagination {
    position: absolute;
    bottom: 30px !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 20;
}

.spotlight-pagination .swiper-pagination-bullet {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    opacity: 1;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.spotlight-pagination .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.3);
}

.spotlight-pagination .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--primary-color);
    transform: translateX(-100%);
    animation: fillProgress 6s linear forwards;
}

@keyframes fillProgress {
    to {
        transform: translateX(0);
    }
}

/* =========================================
   GALLERY PAGE - Hero, Tags, Grid, CTA
   ========================================= */
.gallery-hero__lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* Gallery filter tabs - distinct pill/chip style */
.gallery-tags-wrapper {
    margin-top: 28px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-tags-wrapper::-webkit-scrollbar {
    display: none;
}

.gallery-tags {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 10px;
    padding: 8px 4px 16px;
    min-width: min-content;
}

.gallery-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    background: transparent;
    border: 2px solid rgba(75, 75, 75, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-body);
}

.gallery-tag:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 111, 97, 0.06);
}

.gallery-tag.is-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 111, 97, 0.35);
}

.gallery-tag.is-active:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* Desktop: tags wrap; mobile: horizontal scroll */
@media (min-width: 769px) {
    .gallery-tags {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.gallery-grid .gallery-item {
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.gallery-grid .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.gallery-grid .gallery-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}

/* Gallery filter: hide filtered items, animate when shown */
.gallery-grid .gallery-item.gallery-item--hidden {
    display: none !important;
}

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

.gallery-item__label {
    font-size: 1.15rem;
    margin: 16px 20px 6px;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.gallery-item__tags {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 20px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gallery-cta {
    background: var(--bg-cream);
}

.gallery-cta__actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

@media (max-width: 768px) {
    .gallery-tags-wrapper {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .gallery-tags {
        justify-content: flex-start;
        padding-bottom: 12px;
    }

    .gallery-tag {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-cta__actions {
        flex-direction: column;
        align-items: center;
    }

    .gallery-cta__actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* =========================================
   15. GALLERY (Homepage / Wedding inline)
   ========================================= */
.gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 111, 97, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

/* =========================================
   16. TESTIMONIALS SECTION - Fade Slider
   ========================================= */
.reviews-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #FFFFFF;
}

.testimonialSwiper {
    max-width: 700px;
    margin: 0 auto;
}

.testimonialSwiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonialSwiper .swiper-slide-active {
    opacity: 1;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-top: 45px;
    position: relative;
}

.testimonial-nav-prev,
.testimonial-nav-next {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(75, 75, 75, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    flex-shrink: 0;
}

.testimonial-nav-prev:hover,
.testimonial-nav-next:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.08);
}

.testimonial-progress {
    flex: 1;
    max-width: 200px;
    height: 4px;
    background: rgba(75, 75, 75, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.testimonial-progress-bar {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transform-origin: left;
    animation: testimonialProgress 6000ms linear forwards;
}

@keyframes testimonialProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.review-card-glass {
    background: #fff;
    border: 1px solid rgba(255, 111, 97, 0.2);
    padding: 50px 40px;
    border-radius: 4px;
    color: var(--text-main);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-soft);
    height: 100%;
}

.review-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.quote-icon-bg {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: rgba(255, 111, 97, 0.15);
    font-family: serif;
}

.review-stars {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.6;
    color: var(--text-main);
}

.review-author h4 {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.review-author span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.swiper-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    z-index: 2;
    position: relative;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 50px;
    height: 50px;
    border: 1px solid var(--text-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    background: none;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* =========================================
   17. FAQ SECTION
   ========================================= */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}

.accordion-item {
    border-bottom: 1px solid rgba(75, 75, 75, 0.15);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 25px 10px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.accordion-header i {
    font-size: 1rem;
    color: var(--primary-color);
    transition: transform 0.4s ease;
}

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

.accordion-content p {
    padding: 0 10px 30px 10px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.accordion-item.active .accordion-header {
    color: var(--primary-color);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    transition: max-height 0.5s ease-in-out;
}

.accordion-item.active i,
.accordion-item.active .accordion-header .icon,
.accordion-item.active .accordion-header svg {
    transform: rotate(45deg);
}

/* =========================================
   FUN FACTS INTERACTIVE (About page)
   ========================================= */
.fun-facts-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.fun-fact-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: var(--transition);
}

.fun-fact-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.fun-fact-card.expanded {
    grid-column: 1 / -1;
}

.fun-fact-card-trigger {
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.fun-fact-card-front {
    display: flex;
    flex-direction: column;
    min-height: 220px;
    padding: 0;
}

.fun-fact-card-img {
    height: 140px;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-cream);
}

.fun-fact-card-title {
    display: block;
    padding: 16px 20px 6px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.fun-fact-card-teaser {
    display: block;
    padding: 0 20px 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.fun-fact-card-hint {
    display: block;
    padding: 0 20px 16px;
    font-size: 0.8rem;
    color: var(--primary-light);
    margin-top: auto;
}

.fun-fact-card-expanded {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fun-fact-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--text-main);
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    z-index: 2;
}

.fun-fact-close:hover {
    background: var(--primary-color);
    color: #fff;
}

.fun-fact-card.expanded .fun-fact-card-expanded {
    max-height: 500px;
}

.fun-fact-card.expanded .fun-fact-card-front {
    display: none;
}

.fun-fact-card-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    padding: 28px;
    align-items: start;
}

.fun-fact-card-content img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
}

.fun-fact-card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.fun-fact-card-content p {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.fun-fact-origin {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem !important;
}

.fun-fact-menu-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.fun-fact-menu-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .fun-facts-interactive {
        grid-template-columns: 1fr;
    }

    .fun-fact-card-content {
        grid-template-columns: 1fr;
    }

    .fun-fact-card-content img {
        max-height: 180px;
        aspect-ratio: 16/9;
    }
}

/* =========================================
   18. LOCATION SECTION - MODERN REDESIGN
   ========================================= */
.location-section-modern {
    position: relative;
    min-height: 80vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.location-map-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.location-map-container .leaflet-container {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.location-section-modern .container {
    position: relative;
    z-index: 2;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
}

.location-header .section-label {
    color: var(--primary-light);
}

.location-header h2 {
    color: #fff;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 15px;
}

.location-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.location-header .separator {
    background: rgba(255, 255, 255, 0.3);
}

.location-header .separator::after {
    background: transparent;
    color: var(--primary-light);
}

.location-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.location-card-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.location-card-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.location-card-glass:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(255, 111, 97, 0.3);
    border-color: rgba(255, 111, 97, 0.4);
}

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

.location-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(255, 111, 97, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.location-card-icon i {
    font-size: 1.8rem;
    color: var(--primary-light);
    transition: var(--transition);
}

.location-card-glass:hover .location-card-icon {
    background: rgba(255, 111, 97, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.location-card-glass:hover .location-card-icon i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.location-card-glass h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.location-card-detail {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-card-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 111, 97, 0.5), transparent);
    margin: 15px auto;
}

.location-card-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 15px;
    font-style: italic;
}

/* Leaflet Map Customization */
.location-map-container .leaflet-tile-pane {
    filter: grayscale(0.3) brightness(0.7) contrast(1.2);
}

.location-map-container .leaflet-control-zoom {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.location-map-container .leaflet-control-zoom a {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.location-map-container .leaflet-control-zoom a:hover {
    background: rgba(255, 111, 97, 0.3);
    border-color: var(--primary-color);
}

/* Custom Map Marker */
.custom-map-marker {
    background: transparent;
    border: none;
}

.marker-pin {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.marker-pin i {
    transform: rotate(45deg);
    color: #fff;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .location-section-modern {
        min-height: 70vh;
        padding: 80px 0;
    }

    .location-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .location-card-glass {
        padding: 30px 20px;
    }
}

/* =========================================
   19. INSTAGRAM FEED SECTION
   ========================================= */
#instagram-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg-white);
}

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

/* Instagram CTA block: two-column desktop, stacked mobile (no external scripts) */
.instagram-cta-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 48px;
}

.instagram-cta-block__image {
    flex: 1 1 320px;
    min-width: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.instagram-cta-block__image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.instagram-cta-block__content {
    flex: 1 1 360px;
    min-width: 0;
}

.instagram-cta-block__content .instagram-label {
    display: block;
    margin-bottom: 8px;
}

.instagram-cta-block__content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0;
    color: var(--text-main);
}

.instagram-cta-block__content .separator {
    margin: 15px 0 20px;
}

.instagram-cta-block__content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 24px;
}

.instagram-cta-block__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.instagram-cta-block__btn .icon {
    width: 1.2em;
    height: 1.2em;
}

.instagram-cta-block__hint {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 16px 0 0 !important;
    opacity: 0.85;
}

@media (max-width: 767px) {
    .instagram-cta-block {
        flex-direction: column;
        text-align: center;
    }

    .instagram-cta-block__content .separator {
        margin-left: auto;
        margin-right: auto;
    }
}

.instagram-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.separator {
    width: 100%;
    max-width: 150px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 15px auto 25px;
    position: relative;
    opacity: 0.7;
}

.separator::after {
    content: '◆';
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    padding: 0 10px;
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Static Instagram links (no embed.js - CSP-safe) */
.instagram-static-link {
    display: block;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.instagram-static-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.instagram-static-link:hover img {
    transform: scale(1.03);
}

.instagram-static-link .instagram-view-link {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 60px;
}

.instagram-static-link:hover .instagram-view-link {
    background: linear-gradient(transparent, rgba(255, 111, 97, 0.9));
}

/* =========================================
   GALLERY SWIPER (Chicago Catering, etc.)
   ========================================= */
.gallery-swiper-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 10px;
}

.gallerySwiper {
    overflow: hidden;
    border-radius: 8px;
}

.gallery-swiper-slide {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    margin: 0;
}

.gallery-swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-swiper-slide:hover img {
    transform: scale(1.05);
}

.gallery-swiper-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-swiper-slide:hover .gallery-swiper-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-swiper-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 28px;
    padding: 0 10px;
}

.gallery-swiper-prev,
.gallery-swiper-next {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border: 2px solid rgba(75, 75, 75, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-swiper-prev:hover,
.gallery-swiper-next:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.08);
}

.gallery-swiper-prev .icon,
.gallery-swiper-next .icon {
    width: 24px;
    height: 24px;
}

.gallery-swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    display: flex;
    gap: 10px;
}

.gallery-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(75, 75, 75, 0.3);
    opacity: 1;
    margin: 0 !important;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-swiper-pagination .swiper-pagination-bullet:hover {
    background: rgba(75, 75, 75, 0.5);
}

.gallery-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 639px) {
    .gallery-swiper-caption {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   MENU CAROUSEL - Enhanced PC styling
   ========================================= */
.menu-carousel-section .gallery-swiper-wrapper {
    max-width: 1280px;
    padding: 0 24px;
}

.menu-carousel-section .menuCarouselSwiper .swiper-slide {
    padding: 4px;
}

.menu-carousel-section .gallery-swiper-slide {
    border-radius: 12px;
    aspect-ratio: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.menu-carousel-section .gallery-swiper-slide:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.menu-carousel-section .gallery-swiper-slide img {
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-carousel-section .gallery-swiper-slide:hover img {
    transform: scale(1.08);
}

.menu-carousel-section .gallery-swiper-caption {
    padding: 20px 24px;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    border-radius: 0 0 10px 10px;
}

.menu-carousel-section .menu-carousel-prev,
.menu-carousel-section .menu-carousel-next {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border: 2px solid rgba(75, 75, 75, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.menu-carousel-section .menu-carousel-prev:hover,
.menu-carousel-section .menu-carousel-next:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(255, 111, 97, 0.35);
}

.menu-carousel-section .menu-carousel-prev .icon,
.menu-carousel-section .menu-carousel-next .icon {
    width: 24px;
    height: 24px;
}

.menu-carousel-section .gallery-swiper-nav {
    margin-top: 36px;
    gap: 28px;
}

.menu-carousel-section .gallery-swiper-pagination .swiper-pagination-bullet,
.menu-carousel-section .menu-carousel-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
}

@media (min-width: 1024px) {
    .menu-carousel-section .gallery-swiper-slide {
        aspect-ratio: 1;
    }
}

@media (max-width: 1023px) {
    .menu-carousel-section .gallery-swiper-slide {
        aspect-ratio: 4/3;
    }
}

/* =========================================
   MENU BENTO GALLERY
   ========================================= */
.menu-bento-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-bento-gallery .gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.menu-bento-gallery .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.menu-bento-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-bento-gallery .gallery-item:hover img {
    transform: scale(1.12);
}

.menu-bento-gallery .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 111, 97, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.menu-bento-gallery .gallery-item:hover .overlay {
    opacity: 1;
}

.menu-bento-gallery .overlay span {
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
}

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

.menu-bento-gallery .item-tall {
    grid-column: span 1;
    grid-row: span 2;
}

.menu-bento-gallery .item-wide {
    grid-column: span 2;
    grid-row: span 1;
}

@media (max-width: 900px) {
    .menu-bento-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 16px;
    }

    .menu-bento-gallery .item-tall {
        grid-column: span 1;
        grid-row: span 2;
    }

    .menu-bento-gallery .item-wide {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .menu-bento-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
        gap: 12px;
    }

    .menu-bento-gallery .item-tall,
    .menu-bento-gallery .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* =========================================
   20. FOOTER CTA (BRIGHTER)
   ========================================= */
/* =========================================
   20. FOOTER - SIMPLE & CLEAN
   ========================================= */
.footer-simple {
    position: relative;
    background: linear-gradient(135deg, #2D2D2D 0%, #1a1a1a 50%, #2D2D2D 100%);
    padding: 80px 0 30px;
    overflow: hidden;
    color: #fff;
}

.footer-wave-separator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-99%);
    z-index: 1;
    color: var(--bg-white);
}

.footer-wave-separator svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-simple .container {
    position: relative;
    z-index: 2;
}

/* Footer Main Grid */
.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 350px;
}

.footer-brand-name {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.footer-brand-tagline {
    color: var(--primary-light);
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-column-title {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Footer Links */
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-list li {
    margin-bottom: 12px;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-link-list a:hover {
    color: var(--primary-light);
    transform: translateX(5px);
}

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

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-contact-list i {
    color: var(--primary-light);
    margin-top: 3px;
    font-size: 1rem;
    min-width: 18px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-list a:hover {
    color: var(--primary-light);
}

.footer-contact-list span {
    color: rgba(255, 255, 255, 0.75);
}

/* Footer Social */
.footer-social-column {
    max-width: 250px;
}

.footer-social-simple {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.3);
}

.footer-cta-simple {
    margin-top: 10px;
}

.footer-cta-simple .btn {
    width: 100%;
    justify-content: center;
}

/* Footer Bottom */
.footer-bottom-simple {
    text-align: center;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-simple p {
    margin-bottom: 10px;
}

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

.copyright-heart {
    color: var(--primary-light);
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 15px;
}

.footer-credit a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-credit a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-simple {
        padding: 60px 0 25px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social-column {
        max-width: 100%;
    }

    .footer-social-simple {
        justify-content: flex-start;
    }
}

/* =========================================
   21. MENU FAB BUTTON
   ========================================= */
.fab-menu {
    position: fixed;
    bottom: 20px;
    left: 25px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    overflow: visible;
    transform: translateY(0);
}

.fab-menu:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 111, 97, 0.5);
}

.fab-menu-label {
    position: absolute;
    left: 70px;
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
    pointer-events: none;
}

.fab-menu:hover .fab-menu-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* =========================================
   22. MENU MODAL
   ========================================= */
.menu-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
}

.menu-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-modal-overlay[data-lenis-prevent] {
    overscroll-behavior: contain;
}

.menu-modal {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.menu-modal-overlay.active .menu-modal {
    transform: scale(1) translateY(0);
}

.menu-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.menu-modal-close:hover {
    background: var(--primary-color);
    color: #fff;
    transform: rotate(90deg);
}

.menu-modal-header {
    text-align: center;
    padding: 60px 40px 40px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-modal-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
}

.menu-modal-header h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: var(--text-main);
}

.menu-modal-header .separator {
    margin: 15px auto;
}

.menu-modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

.menu-modal-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 30px 40px 20px;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
}

.menu-tab-btn {
    background: none;
    border: 2px solid transparent;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 10px 20px;
    border-radius: 25px;
    transition: var(--transition);
    position: relative;
}

.menu-tab-btn:hover {
    color: var(--text-main);
    background: rgba(255, 111, 97, 0.1);
}

.menu-tab-btn.active {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(255, 111, 97, 0.1);
}

.menu-modal-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    padding: 30px 40px;
    background: var(--bg-cream);
}

.menu-modal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.menu-modal-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
}

.menu-modal-item.hide {
    display: none;
}

.menu-modal-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.menu-modal-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--bg-cream);
}

.menu-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-modal-item:hover .menu-modal-image img {
    transform: scale(1.1);
}

.menu-modal-item-content {
    padding: 25px;
    flex-grow: 1;
}

.menu-modal-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.menu-modal-item-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.menu-modal-item-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
}

.menu-modal-footer {
    padding: 30px 40px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-modal-footer .btn {
    min-width: 180px;
}

/* "View Full Menu" - mobile only */
.menu-modal-view-full {
    display: none;
}

/* Responsive Menu Modal - Option B: Short menu on mobile */
@media (max-width: 768px) {
    .fab-menu {
        bottom: 15px;
        left: 15px;
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .fab-menu-label {
        display: none;
    }

    .menu-modal {
        margin: 15px;
        max-height: 95vh;
        border-radius: 8px;
    }

    .menu-modal-header {
        padding: 35px 20px 20px;
    }

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

    .menu-modal-header p {
        font-size: 0.9rem;
    }

    /* Hide filter tabs on mobile */
    .menu-modal-tabs {
        display: none;
    }

    .menu-modal-content {
        padding: 15px 20px;
    }

    .menu-modal-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Show only first 4 items on mobile */
    .menu-modal-item:nth-child(n+5) {
        display: none !important;
    }

    /* Compact items: smaller images */
    .menu-modal-image {
        height: 100px;
    }

    .menu-modal-item-content {
        padding: 15px;
    }

    .menu-modal-item-content h3 {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .menu-modal-item-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        display: none;
        /* Hide descriptions on mobile for brevity */
    }

    /* Footer: View full menu + Call */
    .menu-modal-footer {
        padding: 16px 20px;
        flex-direction: column;
        gap: 10px;
    }

    .menu-modal-view-full {
        display: flex;
        align-items: center;
        justify-content: center;
        order: -1;
    }

    .menu-modal-contact {
        display: none;
    }

    .menu-modal-footer .btn {
        width: 100%;
        min-width: unset;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .menu-modal-footer .btn .icon {
        width: 18px;
        height: 18px;
    }
}

/* Desktop: hide View Full Menu */
@media (min-width: 769px) {
    .menu-modal-view-full {
        display: none;
    }
}

/* =========================================
   23. FLOATING ACTION BUTTON
   ========================================= */
.fab-wrapper {
    position: fixed;
    bottom: 12px;
    right: 25px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
    z-index: 1000;
    transform: translateY(0);
}

.fab-main {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse-paprika 2s infinite;
    transition: var(--transition);
}

.fab-main:hover {
    transform: scale(1.1);
}

@keyframes pulse-paprika {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 111, 97, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 111, 97, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.fab-wrapper.active .fab-main {
    animation: none;
    background: #333;
}

.fab-main .close-icon {
    display: none;
}

.fab-wrapper.active .open-icon {
    display: none;
}

.fab-wrapper.active .close-icon {
    display: block;
}

.fab-options {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.fab-wrapper.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* FAB back-to-top (button, gallery page) - match anchor fab-action size/position */
button.fab-action,
.fab-action--back-to-top {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Gallery FAB - same position & size as index.html */
.fab-wrapper.fab-wrapper--gallery {
    position: fixed;
    bottom: 12px;
    right: 25px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
    z-index: 1000;
}

.fab-wrapper.fab-wrapper--gallery .fab-main {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
}

.fab-wrapper.fab-wrapper--gallery .fab-icon {
    width: 50px;
    height: 50px;
}

.fab-label {
    background: #fff;
    color: var(--text-main);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition);
    white-space: nowrap;
}

.fab-wrapper.active .fab-label {
    opacity: 1;
    transform: translateX(0);
}

.fab-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.fab-action:hover .fab-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

/* =========================================
   22. CALL POPUP
   ========================================= */
.call-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(75, 75, 75, 0.85);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    backdrop-filter: blur(4px);
}

.call-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.call-popup-content {
    background: #fff;
    padding: 50px 40px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    position: relative;
    border-radius: 4px;
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-strong);
}

.call-popup-overlay.active .call-popup-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-main);
    transition: var(--transition);
    line-height: 1;
}

.close-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.call-popup-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.call-popup-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.popup-sub {
    font-size: 0.9rem;
    margin-top: 15px;
    color: var(--text-muted);
}

.popup-sub a {
    color: var(--primary-color);
    text-decoration: underline;
}

.popup-sub a:hover {
    color: var(--primary-dark);
}

/* =========================================
   23. BACK TO TOP BUTTON
   ========================================= */
.scroll-to-top {
    position: fixed;
    bottom: 78px;
    right: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top .icon {
    width: 24px;
    height: 24px;
    color: #fff;
    fill: currentColor;
}

/* =========================================
   MENU SIDEBAR - Off-canvas from left
   ========================================= */
.menu-sidebar-trigger {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 120px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 4px 0 20px rgba(255, 111, 97, 0.35);
    transition: var(--transition);
}

.menu-sidebar-trigger:hover {
    background: var(--primary-dark);
    width: 52px;
    box-shadow: 6px 0 25px rgba(255, 111, 97, 0.45);
}

.menu-sidebar-trigger .icon {
    width: 24px;
    height: 24px;
}

.menu-sidebar-trigger span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.menu-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: #fff;
    z-index: 2999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 40px rgba(0, 0, 0, 0.15);
}

.menu-sidebar.active {
    transform: translateX(0);
}

.menu-sidebar-header {
    padding: 24px 24px 20px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.menu-sidebar-header h2 {
    font-size: 1.5rem;
    margin: 0 0 8px;
    color: var(--text-main);
}

.menu-sidebar-header .gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.menu-sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.menu-sidebar-close:hover {
    background: var(--primary-color);
    color: #fff;
}

.menu-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px 40px;
}

.menu-sidebar-section {
    margin-bottom: 28px;
}

.menu-sidebar-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(255, 111, 97, 0.2);
}

.menu-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-sidebar-list li {
    margin-bottom: 8px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
}

.menu-sidebar-list a {
    flex: 1;
    min-width: 0;
    padding: 10px 14px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: var(--transition);
}

.menu-sidebar-list a:hover {
    background: rgba(255, 111, 97, 0.1);
    color: var(--primary-color);
}

.menu-sidebar-list .item-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    padding-right: 14px;
}

.menu-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.menu-sidebar-footer .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 480px) {
    .menu-sidebar {
        max-width: 100%;
    }

    .menu-sidebar-trigger {
        width: 44px;
        height: 100px;
    }

    .menu-sidebar-trigger span {
        font-size: 0.65rem;
    }
}

/* =========================================
   24. SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border: 2px solid var(--bg-cream);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

::selection {
    background: var(--primary-color);
    color: #fff;
}

/* =========================================
   25. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        margin-bottom: 20px;
    }

    .hero-nav-prev,
    .hero-nav-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-nav-prev {
        left: 15px;
    }

    .hero-nav-next {
        right: 15px;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }

    .process-grid {
        flex-direction: column;
    }

    .process-connector {
        display: none;
    }

    .gallery-wrapper {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 10px;
    }

    .item-tall,
    .item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .video-section {
        height: 50vh;
    }

    .video-text-box {
        padding: 30px 20px;
    }

    .spotlight-section {
        height: 75vh;
    }

    .spotlight-content h3 {
        font-size: 2.2rem;
    }

    .spotlight-content {
        padding: 40px 20px;
    }

    .testimonialSwiper {
        max-width: 100%;
    }

    .testimonial-progress {
        max-width: 120px;
    }

    .testimonial-nav-prev,
    .testimonial-nav-next {
        width: 44px;
        height: 44px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-large {
        width: 100%;
    }

    .fab-wrapper {
        bottom: 10px;
        right: 15px;
    }

    .fab-wrapper.fab-wrapper--gallery {
        bottom: 10px;
        right: 15px;
    }

    .fab-main {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .fab-wrapper.fab-wrapper--gallery .fab-main {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }

    .scroll-to-top {
        bottom: 68px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
        z-index: 1001;
    }

    .fab-menu {
        bottom: 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.65rem;
        margin-bottom: 12px;
    }

    .hero-label {
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .hero-support {
        margin-top: 14px;
    }

    .hero-instagram {
        margin-top: 16px;
    }

    .hero-content-inner {
        padding-bottom: 80px;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

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

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

    .hero-pagination {
        bottom: 60px;
    }

    .scroll-down {
        font-size: 0.7rem;
    }

    .spotlight-pagination .swiper-pagination-bullet {
        width: 35px;
        height: 3px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* =========================================
   BLOG PAGE
   ========================================= */
.blog-hero {
    padding-top: 140px;
}

.blog-hero .section-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

/* =========================================
   MENU PAGE
   ========================================= */
.menu-page-hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 2.5rem;
}

.menu-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('assets/BalkanbitesCatering2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.menu-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(253, 251, 248, 0.92) 0%, rgba(253, 251, 248, 0.85) 100%);
    z-index: 1;
}

.menu-page-hero .container {
    position: relative;
    z-index: 2;
}

/* Full-bleed hero variant – bold editorial */
.menu-hero-fullbleed {
    min-height: 380px;
    display: flex;
    align-items: center;
}

.menu-hero-fullbleed::before {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.6));
}

.menu-hero-fullbleed .section-label {
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.menu-hero-fullbleed .section-header h1 {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.menu-hero-fullbleed .section-header h1 .gradient-text {
    color: rgba(255, 230, 220, 1) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.menu-hero-fullbleed .separator {
    background: rgba(255, 255, 255, 0.7);
}

.menu-hero-fullbleed .separator::after {
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
}

.menu-hero-fullbleed .section-header p {
    color: rgba(255, 255, 255, 0.92) !important;
}

.menu-hero-fullbleed .section-header a {
    color: rgba(255, 230, 220, 1);
    text-decoration: underline;
}

.menu-hero-fullbleed .section-header a:hover {
    color: #fff;
}

/* Sticky CTA bar – appears on scroll (menu page) */
.menu-sticky-cta {
    position: fixed;
    top: 64px; /* Below fixed navbar */
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--neutral-900, #1a1a1a);
    color: #fff;
    padding: 0.6rem 1rem;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.menu-sticky-cta.is-visible {
    transform: translateY(0);
}
.menu-sticky-cta-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 640px;
    margin: 0 auto;
}
.menu-sticky-cta-text {
    font-size: 0.95rem;
    font-weight: 500;
}
.menu-sticky-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-color, #c44536);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}
.menu-sticky-cta-btn:hover {
    background: var(--primary-hover, #a8382b);
    color: #fff;
}
.menu-sticky-cta-btn .icon {
    width: 16px;
    height: 16px;
}

/* Custom budget intro – minimal callout */
.custom-budget-intro {
    max-width: 640px;
    margin: 0 auto 2rem;
}

.custom-budget-lead {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    text-align: center;
}

.custom-budget-lead strong {
    color: var(--text-main);
}

/* Allergen warning + Halal CTA (below hero) */
.allergen-warning {
    max-width: 640px;
    margin: 1.5rem auto 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.allergen-warning-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 14px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.allergen-warning-trigger:hover {
    background: rgba(0, 0, 0, 0.02);
}

.allergen-warning-trigger .accordion-icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.allergen-warning.accordion-item.active .allergen-warning-trigger .accordion-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

.allergen-warning-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.allergen-warning-icon {
    font-size: 1rem;
    opacity: 0.85;
}

.allergen-warning .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.allergen-warning .accordion-content {
    padding: 0 18px;
}

.allergen-warning.accordion-item.active .accordion-content {
    max-height: 320px;
    padding: 0 18px 18px;
}

.allergen-warning .accordion-content p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.allergen-warning .accordion-content p:last-child {
    margin-bottom: 0;
}

.allergen-warning .accordion-content a {
    color: var(--primary-color);
    font-weight: 600;
}

.halal-cta-block {
    max-width: 640px;
    margin: 1.5rem auto 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.halal-cta-title {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
    color: var(--text-main);
}

.halal-cta-block p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.menu-seo-split--image-left .seo-swiper-order-first {
    order: -1;
}

.menu-seo-text {
    max-width: 720px;
    margin: 0 auto;
}

.menu-seo-split .menu-seo-text {
    margin: 0;
}

.menu-seo-text p {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.menu-seo-text a {
    color: var(--primary-color);
}

.seo-swiper-container {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.seoSwiper {
    width: 100%;
    height: 100%;
}

.seoSwiper .swiper-slide {
    height: 100%;
}

.seoSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seo-swiper-pagination {
    position: absolute;
    bottom: 16px;
}

.seo-swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.8);
}

.seo-swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

@media (max-width: 768px) {
    .menu-seo-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .menu-seo-split--image-left .seo-swiper-order-first {
        order: 0;
    }
    .menu-seo-split--text-left {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* =========================================
   WEDDING PAGE
   ========================================= */
.wedding-hero {
    padding-top: 140px;
}

/* Mobile catering hero - background image, white bold text */
.mobile-catering-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-image: url('assets/BalkanbitesCatering2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mobile-catering-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.mobile-catering-hero .container {
    position: relative;
    z-index: 1;
}

.mobile-catering-hero .section-label {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.mobile-catering-hero .section-header h1 {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.mobile-catering-hero .section-header h1 .gradient-text {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.mobile-catering-hero .separator {
    background: rgba(255, 255, 255, 0.9);
}

.mobile-catering-hero .wedding-hero-sub {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.mobile-catering-hero .hero-btns,
.mobile-catering-hero .wedding-hero-btns {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.mobile-catering-hero .wedding-hero-btns .btn-transparent-footer {
    border-color: #fff;
    color: #fff;
}

.mobile-catering-hero .wedding-hero-btns .btn-transparent-footer:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Chicago catering hero - background image, white bold text (same as mobile) */
.chicago-catering-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-image: url('assets/BalkanBitesCatering1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.chicago-catering-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.chicago-catering-hero .container {
    position: relative;
    z-index: 1;
}

.chicago-catering-hero .section-label {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.chicago-catering-hero .section-header h1 {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.chicago-catering-hero .section-header h1 .gradient-text {
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.chicago-catering-hero .separator {
    background: rgba(255, 255, 255, 0.9);
}

.chicago-catering-hero .wedding-hero-sub {
    color: #fff !important;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.chicago-catering-hero .hero-btns,
.chicago-catering-hero .wedding-hero-btns {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.chicago-catering-hero .wedding-hero-btns .btn-transparent-footer {
    border-color: #fff;
    color: #fff;
}

.chicago-catering-hero .wedding-hero-btns .btn-transparent-footer:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* =========================================
   CHICAGO CATERING PAGE – Animations & Interactions
   ========================================= */

/* Hero staggered entrance (on load) */
.page-chicago-catering .hero-entrance .section-label {
    opacity: 0;
    animation: chicagoFadeInUp 0.7s ease-out 0.1s forwards;
}
.page-chicago-catering .hero-entrance h1 {
    opacity: 0;
    animation: chicagoFadeInUp 0.7s ease-out 0.25s forwards;
}
.page-chicago-catering .hero-entrance .separator {
    opacity: 0;
    animation: chicagoFadeInUp 0.6s ease-out 0.4s forwards;
}
.page-chicago-catering .hero-entrance .wedding-hero-sub {
    opacity: 0;
    animation: chicagoFadeInUp 0.7s ease-out 0.55s forwards;
}
.page-chicago-catering .hero-entrance .wedding-hero-btns {
    opacity: 0;
    animation: chicagoFadeInUp 0.7s ease-out 0.75s forwards;
}
@keyframes chicagoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section labels – subtle letter-spacing + fade */
.page-chicago-catering .section-label-animate {
    display: inline-block;
    letter-spacing: 0.2em;
    transition: letter-spacing 0.5s ease, opacity 0.5s ease;
}
.page-chicago-catering .section-header.active-reveal .section-label-animate {
    letter-spacing: 0.35em;
}

/* Animated underline on h2 (draws when section enters view) */
.page-chicago-catering .animated-underline-wrap {
    position: relative;
    display: inline-block;
}
.page-chicago-catering .animated-underline-wrap::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-chicago-catering .section-header.active-reveal .animated-underline-wrap::after {
    width: 100%;
}

/* Gradient text shimmer */
.page-chicago-catering .gradient-shimmer {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShimmer 4s ease-in-out infinite;
}
@keyframes gradientShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Service cards – enhanced hover (lift + icon bounce + border glow) */
.page-chicago-catering .service-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    border: 1px solid transparent;
}
.page-chicago-catering .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(75, 75, 75, 0.12), 0 8px 24px rgba(255, 111, 97, 0.15);
    border-color: rgba(255, 111, 97, 0.2);
}
.page-chicago-catering .service-card:hover .icon-box {
    transform: scale(1.15) rotate(-3deg);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Content blocks – paragraph stagger on scroll */
.page-chicago-catering .wedding-content-block.reveal-up p,
.page-chicago-catering .wedding-content-block.reveal-up ul {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.page-chicago-catering .wedding-content-block.reveal-up.active-reveal p,
.page-chicago-catering .wedding-content-block.reveal-up.active-reveal ul {
    opacity: 1;
    transform: translateY(0);
}
.page-chicago-catering .wedding-content-block.reveal-up.active-reveal p:nth-of-type(1) { transition-delay: 0.1s; }
.page-chicago-catering .wedding-content-block.reveal-up.active-reveal ul { transition-delay: 0.2s; }
.page-chicago-catering .wedding-content-block.reveal-up.active-reveal p:nth-of-type(2) { transition-delay: 0.3s; }
.page-chicago-catering .wedding-content-block.reveal-up.active-reveal p:nth-of-type(3) { transition-delay: 0.4s; }

/* CTA button – subtle pulse on hover */
.page-chicago-catering .section-header .btn-primary:hover {
    animation: ctaPulse 1.5s ease-in-out infinite;
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 4px 14px rgba(255, 111, 97, 0.4); }
    50% { box-shadow: 0 6px 24px rgba(255, 111, 97, 0.5); }
}

/* Menu carousel slides – caption slide-up on hover */
.page-chicago-catering .menu-carousel-section .gallery-swiper-caption {
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}
.page-chicago-catering .menu-carousel-section .gallery-swiper-slide:hover .gallery-swiper-caption {
    transform: translateY(0);
}

/* Accordion – smoother expand + icon rotate */
.page-chicago-catering .accordion-item .accordion-header svg {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.page-chicago-catering .accordion-item.active .accordion-header svg {
    transform: rotate(45deg);
}

.wedding-hero-sub {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.wedding-hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.wedding-content-block p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

.wedding-content-block p:last-child {
    margin-bottom: 0;
}

.menu-page-hero .section-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.menu-page-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.menu-page-cta p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Menu page: section nav, services vs menu split */
.menu-section-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0.75rem 0;
}

.menu-section-nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.menu-section-nav-link:hover,
.menu-section-nav-link.active {
    color: var(--primary-color);
}

.menu-section-nav-link.active {
    background: rgba(255, 111, 97, 0.1);
}

.menu-subsection-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 2.5rem 0 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 111, 97, 0.3);
}

.menu-subsection-title:first-of-type {
    margin-top: 0;
}

.menu-services-block {
    margin-bottom: 2rem;
    scroll-margin-top: 120px;
}

.recommended-intro {
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(56, 142, 60, 0.08);
    border-radius: 8px;
    border-left: 4px solid #2e7d32;
}
.recommended-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2e7d32;
    margin-bottom: 0.35rem;
}
.recommended-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.menu-items-block {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    scroll-margin-top: 120px;
}

.services-grid.packages-grid,
.services-grid.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.services-grid.packages-grid .package-card {
    grid-column: span 1;
}

/* Package tier badges & icons – premium styling */
.package-card {
    position: relative;
}

.package-tier-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 12px;
    border-radius: 4px;
    background: rgba(75, 75, 75, 0.08);
    color: var(--text-muted);
}

.package-tier-popular .package-tier-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    box-shadow: 0 2px 8px rgba(255, 111, 97, 0.3);
}

.package-tier-premium .package-tier-badge {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 50%, #4a4a4a 100%);
    color: #fff;
    letter-spacing: 2px;
}

.package-tier-vegetarian .package-tier-badge {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25), rgba(94, 188, 98, 0.15));
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.package-card-icon {
    width: 56px;
    height: 56px;
    margin: 28px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: rgba(255, 111, 97, 0.06);
    border-radius: 50%;
}

.package-card-icon .icon {
    width: 28px;
    height: 28px;
}

.package-tier-starter .package-card-icon {
    color: #8b7355;
    background: rgba(139, 115, 85, 0.08);
}
.package-tier-popular .package-card-icon {
    color: var(--primary-color);
    background: rgba(255, 111, 97, 0.1);
}
.package-tier-premium .package-card-icon {
    color: #3d3d3d;
    background: rgba(61, 61, 61, 0.08);
}
.package-tier-vegetarian .package-card-icon {
    color: #2e7d32;
    background: rgba(76, 175, 80, 0.1);
}

/* Premium "Most Popular" card – subtle elevation */
.package-card.package-recommended {
    border-color: rgba(255, 111, 97, 0.2);
    box-shadow: 0 8px 28px rgba(75, 75, 75, 0.1), 0 2px 8px rgba(255, 111, 97, 0.12);
}
.package-card.package-recommended:hover {
    box-shadow: 0 16px 44px rgba(75, 75, 75, 0.14), 0 6px 16px rgba(255, 111, 97, 0.18);
}

/* Compact package cards (teaser + modal for details) – premium feel */
.package-card-compact {
    display: flex;
    flex-direction: column;
}
.package-card-compact .package-card-teaser {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-bottom: 28px;
    padding-top: 8px;
}
.package-card-compact .package-card-icon {
    margin: 22px auto 12px;
}
.package-card-compact .package-card-header {
    padding: 20px 28px 0;
    border-bottom: none;
}
.package-card-compact .package-card-header h3 {
    margin-bottom: 14px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.35;
    min-height: 2.5em;
}
.package-card-compact .package-price {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}
.package-intro-short {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 28px 20px;
    text-align: center;
    min-height: 2.6em;
}
.package-card-compact .package-view-details {
    display: block;
    margin: auto auto 0;
    padding: 12px 28px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-width: 1.5px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.package-card-compact .package-view-details:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.package-card-details {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Package details modal */
.package-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(75, 75, 75, 0.85);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.package-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}
.package-modal {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32), 0 8px 24px rgba(0, 0, 0, 0.12);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.96);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.package-modal-overlay.active .package-modal {
    transform: scale(1);
}
.package-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.2s, transform 0.2s;
}
.package-modal-close:hover {
    color: var(--primary-color);
}
.package-modal-header {
    padding: 40px 44px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(75, 75, 75, 0.08);
}
.package-modal-price {
    display: block;
    font-weight: 700;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.package-modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
    letter-spacing: 0.01em;
}
.package-modal-body {
    padding: 24px 40px 36px;
    text-align: left;
}
.package-modal-body .package-intro {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.package-modal-body .package-includes {
    margin: 1rem 0;
    padding-left: 1.25rem;
}
.package-modal-body .package-includes li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
    color: var(--text-main);
}
.package-modal-body .package-for {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}
.package-modal-body .abundance-level {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Add-on cards with icons */
.addon-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
}

.addon-recommended-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    border-radius: 20px;
    background: rgba(255, 111, 97, 0.15);
    color: var(--primary-color);
    z-index: 1;
}

.addon-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    background: rgba(255, 111, 97, 0.1);
    border-radius: 8px;
}

.addon-card-icon .icon {
    width: 22px;
    height: 22px;
}

.addon-card-content {
    flex: 1;
    padding: 20px 24px 24px 20px;
    text-align: left;
}

.addon-card-compact .addon-card-content {
    padding: 16px 20px 20px 16px;
}
.addon-card-compact .addon-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.addon-card-compact .addon-card-content p {
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 0;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

@media (max-width: 768px) {
    .menu-section-nav { gap: 1rem; }
    .services-grid.packages-grid,
    .services-grid.addons-grid {
        grid-template-columns: 1fr;
    }
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-date {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.blog-card-content h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
}

.blog-card .read-more:hover {
    color: var(--primary-dark);
}

/* Resources Section */
.blog-resources {
    background: var(--bg-cream);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.resources-group h3 {
    font-size: 1.35rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.resources-list {
    list-style: none;
}

.resources-list li {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.resources-list a {
    color: var(--primary-color);
    font-weight: 600;
}

.resources-list a:hover {
    color: var(--primary-dark);
}

/* =========================================
   26. ACCESSIBILITY
   ========================================= */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

a:focus-visible,
button:focus-visible,
.tab-btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {

    .navbar,
    .fab-wrapper,
    .menu-sidebar-trigger,
    .menu-sidebar-overlay,
    .menu-sidebar,
    .call-popup-overlay,
    .scroll-down,
    .hero-nav-prev,
    .hero-nav-next,
    .scroll-to-top {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .section {
        page-break-inside: avoid;
    }
}

.custom-cursor {
    position: fixed;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    mix-blend-mode: difference;
}

/* =========================================
   INLINE SVG ICONS (CSP-safe, no CDN)
   ========================================= */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    fill: currentColor;
}

.icon-sm {
    width: 0.875em;
    height: 0.875em;
}

.icon-lg {
    width: 1.25em;
    height: 1.25em;
}

.icon-xl {
    width: 1.5em;
    height: 1.5em;
}

.icon-2xl {
    width: 2em;
    height: 2em;
}

/* =========================================
   INSTAGRAM FOLLOW MODAL
   Lightweight popup on non-home pages only
   ========================================= */
.ig-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ig-modal-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.ig-modal {
    position: relative;
    max-width: 420px;
    width: 100%;
    padding: 1.75rem;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: var(--shadow-strong), 0 0 0 1px rgba(0, 0, 0, 0.1);
    color: var(--text-inverse);
}

.ig-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: var(--text-inverse);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.ig-modal__close:hover,
.ig-modal__close:focus {
    opacity: 1;
}

.ig-modal__close .icon {
    width: 1.25rem;
    height: 1.25rem;
}

.ig-modal__title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.75rem;
    padding-right: 2rem;
    color: var(--text-light);
}

.ig-modal__text {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 0 1.25rem;
    color: rgba(247, 247, 247, 0.9);
}

.ig-modal__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.ig-modal__hint {
    font-size: 0.8rem;
    color: rgba(247, 247, 247, 0.6);
    margin: 0;
}

/* =========================================
   CONTACT FORM
   ========================================= */
.contact-form .form-group {
    margin-bottom: 1.25rem;
}
.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 1px solid rgba(75, 75, 75, 0.2);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-main);
    transition: var(--transition);
    min-height: 44px;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.15);
}
.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}
@media (max-width: 480px) {
    .contact-form .form-row {
        grid-template-columns: 1fr !important;
    }
}

/* =========================================
   MOBILE-FIRST UX ENHANCEMENTS
   Touch targets, haptic feedback, FAB spacing
   ========================================= */
.accordion-header,
.tab-btn,
.gallery-tag,
.fab-action,
.menu-sidebar-close,
.btn {
    min-height: 44px;
    min-width: 44px;
}
.accordion-header { padding: 1rem 1.25rem; }
.tab-btn { padding: 0.75rem 1rem; }
.gallery-tag { padding: 0.5rem 1rem; min-height: 44px; display: inline-flex; align-items: center; }

.service-card:active,
.menu-card:active,
.package-card:active,
.addon-card:active {
    transform: scale(0.98);
    transition: transform 0.15s ease;
}

@media (max-width: 768px) {
    main { padding-bottom: 5rem; }
}

.services-grid-desktop { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.services-swiper-mobile { display: none; padding-bottom: 2.5rem; }
@media (max-width: 768px) {
    .services-grid-desktop { display: none !important; }
    .services-swiper-mobile { display: block !important; }
}
.services-swiper-mobile .service-card { min-height: 280px; }

/* Packages: Desktop grid | Mobile Swiper (menu page) */
.packages-grid-desktop { display: grid; }
.packages-swiper-mobile { display: none; padding-bottom: 2.5rem; }
@media (max-width: 768px) {
    .packages-grid-desktop { display: none !important; }
    .packages-swiper-mobile { display: block !important; }
}
.packages-swiper-mobile .package-card { min-height: 340px; }

.gallery-grid-desktop { display: grid; }
.gallery-swiper-mobile { display: none; padding-bottom: 2.5rem; }
@media (max-width: 768px) {
    .gallery-grid-desktop { display: none !important; }
    .gallery-swiper-mobile { display: block !important; }
}
.gallery-swiper-mobile .swiper-slide { height: auto; }
.gallery-swiper-mobile .gallery-item { height: 100%; min-height: 200px; }
.gallery-swiper-mobile .gallery-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; display: block; }
.gallery-swiper-mobile .gallery-item__label { font-size: 1rem; margin: 12px 0 4px; }
.gallery-swiper-mobile .gallery-item__tags { font-size: 0.8rem; }
