/* Catering Page Specific Styles */

/* Catering Hero */
.catering-hero {
    background-image: url('/media/img/catering/hero_catering.webp');
    background-repeat: no-repeat;
}

/* Catering Intro Section */
.catering-intro {
    background-color: var(--main-bg);
    padding: 6rem 0 0 0;
}

.catering-intro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.catering-heading {
    text-align: center;
    font-size: 28px;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.4;
    margin: 0 0 3rem 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 4rem;
    align-items: start;
}

/* Intro Text */
.intro-text {
    display: flex;
    flex-direction: column;
}

.intro-text h2 {
    font-size: 28px;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--secondary-text);
    margin-bottom: 2.5rem;
}

/* Catering Buttons */
.catering-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.view-menu-btn {
    background-color: #ffe9ad;
    color: #3f6870;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
    min-width: 140px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* line-height: 1; */
}

.enquiry-btn {
    background-color: #3f6870;
    color: #ffe9ad;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 14px;
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    display: inline-block;
    min-width: 140px;
    height: 50px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    /* line-height: 1; */
}

.view-menu-btn:hover {
    background-color: #f5dc8e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.enquiry-btn:hover {
    background-color: #3f6870;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Image Slider */
.intro-slider {
    position: relative;
    width: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
    touch-action: pan-x;
    will-change: scroll-position;
    transition: box-shadow 0.2s ease;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.slider-track {
    display: flex;
    width: max-content;
    gap: 20px;
}

.slider-item {
    width: 70%;
    max-width: 520px;
    height: 456px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.slider-container.dragging {
    cursor: grabbing;
    scroll-snap-type: none;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--secondary-text);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 300;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.slider-dot.active {
    background-color: rgba(255, 255, 255, 1);
    width: 14px;
    height: 14px;
}

.slider-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Order Details Section */
.order-details {
    background-color: var(--main-bg);
    padding: 0 0 0 0;
}

.catering-menu {
    background-color: var(--main-bg);
    padding: 5rem 0 6rem 0;
}

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

.catering-menu-heading {
    text-align: center;
    font-size: 28px;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.tab-btn {
    border: none;
    padding: 0.85rem 1.5rem;
    min-width: 140px;
    border-radius: 12px;
    background: #ffe9ad;
    color: #3f6870;
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.tab-btn.active {
    background: #3f6870;
    color: #ffe9ad;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 316px));
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.menu-grid.scrollable {
    display: flex;
    overflow-x: auto;
    gap: 1.25rem;
    padding: 0 1rem 0.75rem 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.menu-grid.scrollable:active {
    cursor: grabbing;
}

.menu-grid.scrollable::-webkit-scrollbar {
    display: none;
}

.menu-grid.scrollable {
    scrollbar-width: none;
}

.menu-grid.scrollable .menu-card {
    flex: 0 0 clamp(240px, 26vw, 320px);
    min-width: 240px;
    scroll-snap-align: start;
}

/* Menu Dots Indicator */
.menu-dots {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.menu-dots.visible {
    display: flex;
}

.menu-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(63, 104, 112, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-dot.active {
    background-color: #3f6870;
    width: 12px;
    height: 12px;
}

.menu-dot:hover {
    background-color: rgba(63, 104, 112, 0.6);
}

.menu-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.menu-card h3 {
    text-align: center;
    font-size: 16px;
    margin-top: 0.75rem;
    color: var(--secondary-text);
    letter-spacing: 1px;
    font-weight: 400;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-image {
    position: relative;
    width: 100%;
    max-width: 316px;
    height: 316px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    flex: 0 0 auto;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

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

.menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    color: #ffe9ad;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    gap: 1rem;
}

.menu-image:hover .menu-overlay {
    opacity: 1;
}

.menu-overlay p {
    margin: 0;
    font-size: 12px;
    line-height: 1.7;
}

.menu-prices {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.price-chip {
    background: #3f6870;
    color: #ffe9ad;
    padding: 0.45rem 0.85rem;
    border-radius: 0;
    font-size: 10px;
    font-weight: 700;
    min-width: 60px;
    text-align: center;
    border: 2px solid #3f6870;
}

.price-chip.outline {
    background: transparent;
    color: #ffe9ad;
    border-color: #3f6870;
}

.price-pair {
    display: inline-flex;
}

.price-pair .price-chip + .price-chip {
    margin-left: -1px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.menu-list-card {
    background: #ffe9ad;
    border-radius: 14px;
    padding: 0.5rem 20px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    color: #3f6870;
    display: grid;
    grid-template-columns: 60% 20% 20%;
    grid-template-rows: auto auto;
    column-gap: 1rem;
    row-gap: 1.5rem;
    align-items: center;
    height: 100%;
}

.menu-list-card h4 {
    margin: 0;
    font-size: 13.5px;
    letter-spacing: 0.5px;
    font-weight: bold;
    grid-column: 1;
    grid-row: 1;
}

.menu-list-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.6;
    color: #3f6870;
    grid-column: 1;
    grid-row: 2;
}

.price-label {
    font-weight: 700;
    grid-row: 1;
}

.price-label:nth-of-type(1) {
    grid-column: 2;
    text-align: center;
    font-size: 12px;
}

.price-label:nth-of-type(2) {
    grid-column: 3;
    text-align: center;
    font-size: 12px;
}

.price-value {
    font-weight: 700;
    font-size: 16px;
    grid-row: 2;
    text-align: center;
}

.price-value:nth-of-type(1) {
    grid-column: 2;
    text-align: center;
}

.price-value:nth-of-type(2) {
    grid-column: 3;
}

.menu-note {
    grid-column: 3;
    align-self: end;
    justify-self: end;
    text-align: right;
    font-size: 13px;
    color: var(--secondary-text);
    line-height: 1.5;
    padding: 0;
    margin: 0;
}

/* Testimonials */
.catering-testimonials {
    position: relative;
    padding: 5rem 0 6rem 0;
    background-image: url('/media/img/home/width_1600.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.catering-testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(247, 242, 233, 0.94);
    z-index: 0;
}

.catering-testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.testimonials-heading {
    text-align: center;
    font-size: 28px;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.testimonial-card {
    text-align: center;
    color: var(--secondary-text);
}

.testimonial-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
    margin-bottom: 1rem;
}

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

.testimonial-card h3 {
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin: 0 0 0.75rem 0;
}

.testimonial-quote {
    font-size: 18px;
    font-family: 'Inria Serif', serif;
    line-height: 1.6;
    margin: 0;
    color: var(--secondary-text);
    font-style: italic;
}
.order-details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.order-content {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 4rem;
    align-items: center;
}

/* Order Image */
.order-image {
    width: 100%;
}

.order-image img {
    width: 100%;
    height: auto;
    display: block;
    /* margin-top: -5rem; */
}

/* Order Text */
.order-text h2 {
    font-size: 28px;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

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

.order-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 15px;
    line-height: 1.8;
    color: var(--secondary-text);
}

.order-list li svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--secondary-text);
}

.order-list li span {
    flex: 1;
}

/* Quote Section */
.quote-section {
    position: relative;
    background-image: url('/media/img/catering/quote_background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 0;
    text-align: center;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(112, 147, 141, 0.85);
    z-index: 0;
}

.quote-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.quote-content {
    position: relative;
}

.quote-mark {
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
}

.quote-mark.opening {
    position: absolute;
    top: -20px;
    left: -40px;
}

.quote-mark.closing {
    position: absolute;
    bottom: 40px;
    right: -40px;
}

.quote-text {
    font-size: 28px;
    font-style: italic;
    line-height: 1.8;
    color: #ffe9ad;
    margin: 2rem 4rem;
    position: relative;
}

.quote-source {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 2rem;
    font-style: normal;
}

/* Contact Form Section */
.contact-form {
    background-color: var(--main-bg);
    padding: 6rem 0;
}

.contact-form-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 4rem;
    align-items: flex-start;
}

.contact-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

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

.contact-form-wrapper {
    width: 100%;
    padding-right: 3.5rem;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.catering-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 17px;
    color: var(--secondary-text);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 17px;
    font-family: 'Inria Serif', serif;
    color: var(--secondary-text);
    background-color: white;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-text);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233f6870' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.5rem;
}

.date-input-wrapper {
    position: relative;
}

.calendar-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--secondary-text);
    pointer-events: none;
}

.date-field input[type="date"] {
    padding-right: 2.5rem;
}

.date-field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.submit-btn {
    background-color: #ffe9ad;
    color: #3f6870;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 17px;
    font-family: 'Inria Serif', serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    width: fit-content;
    margin-top: 1rem;
}

.submit-btn:hover {
    background-color: #f5dc8e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-info {
    margin-top: 2rem;
    font-size: 15px;
    color: var(--secondary-text);
    text-align: center;
    float: right;
}

.contact-info a {
    color: var(--secondary-text);
    text-decoration: underline;
}

/* Gallery Section */
.catering-gallery {
    background-color: #f6f2e9;
    padding: 6rem 0;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.gallery-title {
    font-size: 28px;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

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

.gallery-window {
    max-width: 1180px;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.gallery-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    animation: gallery-scroll 28s linear infinite;
}

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

.gallery-card {
    margin: 0;
    flex: 0 0 320px;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    box-shadow: 0 18px 32px rgba(10, 32, 28, 0.2);
    overflow: hidden;
}

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

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

.gallery-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(63, 104, 112, 0.3);
    background-color: #fff;
    color: var(--secondary-text);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.gallery-arrow:not(:disabled):hover {
    background-color: #fdf4d6;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */

/* Smaller Web (960px - 1280px) */
@media (min-width: 960px) and (max-width: 1279px) {
    .intro-content {
        gap: 2rem;
    }

    .intro-text h2 {
        font-size: 28px;
    }

    .intro-text p {
        font-size: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

    .order-details {
        padding: 0 0 6rem 0;
    }

    .order-content {
        gap: 2rem;
    }

    .order-text h2 {
        font-size: 34px;
    }

    .order-list li {
        font-size: 18px;
    }

    .quote-section {
        padding: 6rem 0;
    }

    .quote-text {
        font-size: 24px;
        margin: 2rem 3rem;
    }

    .quote-mark {
        font-size: 70px;
    }

    .quote-mark.opening {
        left: -30px;
    }

    .quote-mark.closing {
        right: -30px;
    }

    .contact-form-container {
        padding: 0 2rem;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-right: 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 36px;
    }

    .catering-form {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-row {
        gap: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .form-group {
        width: 100%;
        box-sizing: border-box;
    }

    .form-group label {
        font-size: 16px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .submit-btn {
        font-size: 15px;
    }

    .contact-info {
        font-size: 15px;
    }

    .gallery-window {
        max-width: 1020px;
    }

    .catering-menu {
        padding: 3rem 0 4rem 0;
    }

    .catering-menu-heading {
        font-size: 22px;
        margin-bottom: 2rem;
    }

    .tab-btn {
        width: 100%;
        justify-content: center;
    }

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

    .menu-image {
        width: 316px;
        height: 316px;
        max-width: 100%;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .menu-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-list-card {
        grid-template-columns: 60% 20% 20%;
        grid-template-rows: auto auto;
    }

    .catering-menu-heading {
        font-size: 26px;
    }

    .tab-btn {
        min-width: 120px;
        padding: 0.75rem 1.25rem;
    }

    .price-chip {
        min-width: 52px;
        font-size: 13px;
    }
}

/* Mobile (up to 960px) */
@media (max-width: 959px) {
    .catering-intro {
        padding: 3rem 0;
        overflow-x: hidden;
    }

    .catering-intro-container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .intro-text {
        width: 100%;
        box-sizing: border-box;
    }

    .catering-heading {
        font-size: 20px;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }

    .intro-text h2 {
        font-size: 22px;
        letter-spacing: 1px;
        word-wrap: break-word;
    }

    .intro-text p {
        font-size: 14px;
        word-wrap: break-word;
        margin-bottom: 1.5rem;
    }

    .catering-buttons {
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 1.5rem;
    }

    .view-menu-btn,
    .enquiry-btn {
        width: auto;
        max-width: 100%;
        height: auto;
        padding: 1rem 1.5rem;
        line-height: 1.5;
        white-space: normal;
        text-align: center;
        box-sizing: border-box;
    }

    .intro-slider {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .slider-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
        border-radius: 8px;
    }

    .slider-track {
        gap: 0;
        width: 100%;
    }

    .slider-item {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 2/3;
        box-sizing: border-box;
    }

    .slider-item img {
        border-radius: 8px;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

    .menu-list-card {
        grid-template-columns: 60% 20% 20%;
        grid-template-rows: auto auto;
        align-items: center;
        row-gap: 0.4rem;
    }

    .menu-list-card h4 {
        grid-column: 1;
        grid-row: 1;
    }

    .menu-list-card p {
        grid-column: 1;
        grid-row: 2;
    }

    .price-label:nth-of-type(1),
    .price-value:nth-of-type(1) {
        grid-column: 2;
        text-align: center;
        justify-self: center;
    }

    .price-label:nth-of-type(2),
    .price-value:nth-of-type(2) {
        grid-column: 3;
        text-align: center;
        justify-self: center;
    }

    .price-label {
        grid-row: 1;
    }

    .price-value {
        grid-row: 2;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

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

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

    .slider-dots {
        bottom: 15px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .slider-dot.active {
        width: 12px;
        height: 12px;
    }

    .order-details {
        padding: 2rem 0 6rem 0;
        overflow-x: hidden;
    }

    .order-details-container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .order-image {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .order-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .order-text {
        width: 100%;
        box-sizing: border-box;
    }

    .order-text h2 {
        font-size: 22px;
        letter-spacing: 1px;
        word-wrap: break-word;
    }

    .order-list {
        width: 100%;
        box-sizing: border-box;
    }

    .order-list li {
        font-size: 14px;
        word-wrap: break-word;
        margin-bottom: 1.5rem;
    }

    .order-list li svg {
        width: 22px;
        height: 22px;
    }

    .quote-section {
        padding: 4rem 0;
        overflow-x: hidden;
    }

    .quote-container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .quote-content {
        width: 100%;
        box-sizing: border-box;
    }

    .quote-text {
        font-size: 16px;
        margin: 2rem 1rem;
        word-wrap: break-word;
    }

    .quote-mark {
        font-size: 60px;
    }

    .quote-mark.opening {
        top: -10px;
        left: -10px;
    }

    .quote-mark.closing {
        bottom: 30px;
        right: -10px;
    }

.quote-source {
    font-size: 16px;
    word-wrap: break-word;
}

.contact-form {
    padding: 3rem 0;
    overflow-x: hidden;
}

/* Mobile overrides for catering menu section */
@media (max-width: 959px) {
    .catering-menu {
        padding: 3rem 0 4rem 0;
    }

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

    .catering-menu-heading {
        font-size: 20px;
        letter-spacing: 1.5px;
        margin-bottom: 2rem;
    }

    .testimonials-heading {
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    /* Tabs remain the same on mobile */
    .menu-tabs {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .tab-btn {
        min-width: auto;
        padding: 0.65rem 0.85rem;
        font-size: 12px;
    }

    /* Swipeable menu cards */
    .menu-grid {
        display: flex;
        overflow-x: auto;
        gap: 0rem;
        scroll-snap-type: x mandatory;
        padding-bottom: 0.75rem;
        margin-bottom: 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .menu-grid::-webkit-scrollbar {
        display: none;
    }

    .menu-card {
        /* flex: 0 0 75%; */
        min-width: 260px;
        max-width: 320px;
        scroll-snap-align: start;
    }

    .menu-card h3 {
        font-size: 14px;
        min-height: 42px;
        letter-spacing: 0.8px;
    }

    .menu-image {
        width: 240px;
        height: 240px;
        max-width: 100%;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .menu-overlay p {
        font-size: 11px;
        line-height: 1.6;
    }

    .price-chip {
        font-size: 9px;
        padding: 0.4rem 0.7rem;
        min-width: 50px;
    }

    /* Menu list cards - same as desktop layout */
    .menu-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .menu-list-card {
        grid-template-columns: 60% 20% 20%;
        grid-template-rows: auto auto;
        padding: 1rem;
        row-gap: 0.5rem;
        column-gap: 0.5rem;
    }

    .menu-list-card h4 {
        grid-column: 1;
        grid-row: 1;
        font-size: 11px;
    }

    .menu-list-card p {
        grid-column: 1;
        grid-row: 2;
        font-size: 10px;
    }

    .price-label {
        font-size: 10px;
        font-weight: 700;
        grid-row: 1;
        text-align: center;
    }

    .price-label:nth-of-type(1) {
        grid-column: 2;
    }

    .price-label:nth-of-type(2) {
        grid-column: 3;
    }

    .price-value {
        font-size: 13px;
        font-weight: 700;
        grid-row: 2;
        text-align: center;
    }

    .price-value:nth-of-type(1) {
        grid-column: 2;
    }

    .price-value:nth-of-type(2) {
        grid-column: 3;
    }

    .menu-note {
        grid-column: 1 / -1;
        text-align: left;
        font-size: 10px;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(63, 104, 112, 0.2);
    }

    /* Menu Dots on Mobile */
    .menu-dots {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }

    .menu-dot {
        width: 8px;
        height: 8px;
    }

    .menu-dot.active {
        width: 10px;
        height: 10px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-image {
        aspect-ratio: 4 / 5;
    }

    .testimonial-card h3 {
        font-size: 20px;
    }

    .testimonial-quote {
        font-size: 13px;
    }
}

@media (max-width: 959px) {
    .contact-form-container {
        padding: 0 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-text-block {
        order: 1;
        width: 100%;
    }

    .contact-image {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .contact-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .contact-form-wrapper {
        width: 100%;
        box-sizing: border-box;
        padding: 20px !important;
    }

    .contact-form-wrapper h2 {
        font-size: 22px;
        word-wrap: break-word;
    }

    .catering-form {
        width: 100%;
        box-sizing: border-box;
    }

    .form-group {
        width: 100%;
        box-sizing: border-box;
    }

    .form-group label {
        font-size: 15px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        padding: 1rem;
    }

    .form-group input[type="date"],
    .form-group input[type="time"] {
        width: 300px;
        max-width: 100%;
    }

    .date-input-wrapper {
        width: 100%;
    }

    .calendar-icon {
        display: none;
    }

    .submit-btn {
        font-size: 16px;
        padding: 0.85rem 2.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-info {
        font-size: 15px;
        word-wrap: break-word;
    }

    .catering-gallery {
        padding: 3rem 0;
    }

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

    .gallery-title {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .gallery-carousel {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-window {
        width: 100%;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .gallery-track {
        gap: 12px;
        animation: gallery-scroll 24s linear infinite;
    }

    .gallery-card {
        flex: 0 0 calc((100% - 18px) / 2.3);
        max-width: calc((100% - 18px) / 2.3);
        min-width: 120px;
    }

    .gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
    .menu-image {
        max-width: 100%;
        height: 240px;
    }

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation delays for sequential items */
.scroll-reveal:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-reveal:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-reveal:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-reveal:nth-child(5) {
    transition-delay: 0.5s;
}

.scroll-reveal:nth-child(6) {
    transition-delay: 0.6s;
}

/* Instagram Feed Section */
.instagram-feed {
    background-color: var(--main-bg);
    padding: 6rem 0;
    overflow: hidden;
}

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

.instagram-title {
    text-align: center;
    font-size: 32px;
    color: var(--secondary-text);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.instagram-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.instagram-track {
    display: flex;
    gap: 1.5rem;
    animation: scroll-left var(--scroll-duration, 60s) linear infinite;
    will-change: transform;
}

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

.instagram-item {
    flex: 0 0 auto;
    width: 280px;
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.instagram-item:hover {
    transform: scale(1.05);
}

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

.instagram-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-caption {
    opacity: 1;
}

.instagram-caption p {
    color: white;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .instagram-feed {
        padding: 4rem 0;
    }

    .instagram-title {
        font-size: 24px;
        margin-bottom: 2rem;
    }

    .instagram-item {
        width: 200px;
        height: 200px;
    }

    .instagram-track {
        gap: 1rem;
    }
}
