/**
* Template Name: Flavora
* Template URL: https://bootstrapmade.com/flavora-bootstrap-restaurant-template/
* Updated: Mar 22 2026 with Bootstrap v5.3.8
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Marcellus", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {

    --background-color: #ffffff; /* Saf beyaz arka plan */
    --default-color: #444444;    /* Okunabilir koyu gri metin */
    --heading-color: #222222;    /* Daha belirgin başlıklar */
    --surface-color: #f8f9fa;    /* Kartlar için çok hafif gri */

    --accent-color: #ba272c; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --contrast-color: #f3f6f4; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #d0d0d0; /* The default color of the main navmenu links */
    --nav-hover-color: #ff9f1c; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #393939; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #393939; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #d0d0d0; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ff9f1c; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #202020;
    --surface-color: #454444;
}

.dark-background {
    --background-color: #191818;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(0, 0, 0, 0);
    --heading-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

.header .topbar {
    background-color: var(--background-color);
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}

.header .topbar .contact-info i {
    font-style: normal;
    color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}

.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 120px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(0, 0, 0, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding: 40px 0 0 0;
    position: relative;
}

.footer .icon {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer .address p {
    margin-bottom: 0px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 5px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 78px;
    overflow: clip;
    position: relative;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 60px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 0;
}

.hero .hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero .hero-slide {
    min-height: calc(100vh - 92px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 0 160px;
    position: relative;
}

.hero .hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, color-mix(in srgb, var(--background-color), transparent 5%) 0%, color-mix(in srgb, var(--background-color), transparent 30%) 40%, color-mix(in srgb, var(--background-color), transparent 75%) 95%, transparent 100%);
}

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

.hero .hero-content .hero-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.hero .hero-content h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero .hero-content h1 em {
    font-style: italic;
    color: var(--accent-color);
}

.hero .hero-content p {
    font-size: 1.05rem;
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.75;
}

.hero .hero-content .hero-actions {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.hero .hero-content .hero-actions .btn-book {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 34px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.4px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero .hero-content .hero-actions .btn-book:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.hero .hero-content .hero-actions .btn-menu {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-weight: 600;
    font-size: 0.9rem;
    padding-bottom: 4px;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 55%);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.hero .hero-content .hero-actions .btn-menu i {
    transition: transform 0.3s ease;
}

.hero .hero-content .hero-actions .btn-menu:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.hero .hero-content .hero-actions .btn-menu:hover i {
    transform: translateX(5px);
}

.hero .hero-prev,
.hero .hero-next {
    width: 52px;
    height: 52px;
    background-color: color-mix(in srgb, var(--default-color), transparent 80%);
    border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 60%);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.hero .hero-prev i,
.hero .hero-next i {
    font-size: 1.2rem;
    color: var(--contrast-color);
}

.hero .hero-prev::after,
.hero .hero-next::after {
    display: none;
}

.hero .hero-prev:hover,
.hero .hero-next:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    opacity: 1;
}

@media (max-width: 768px) {

    .hero .hero-prev,
    .hero .hero-next {
        display: none;
    }
}

.hero .hero-prev {
    left: 28px;
}

.hero .hero-next {
    right: 28px;
}

.hero .hero-indicators {
    position: absolute;
    bottom: 75px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 5;
    padding: 0;
    margin: 0;
    list-style: none;
}

.hero .hero-indicators li {
    width: 28px;
    height: 3px;
    background-color: color-mix(in srgb, var(--contrast-color), transparent 60%);
    border: none;
    border-radius: 2px;
    padding: 0;
    cursor: pointer;
    transition: width 0.4s ease, background-color 0.3s ease;
    opacity: 1;
    text-indent: 0;
    margin: 0;
}

.hero .hero-indicators li.active {
    width: 60px;
    background-color: var(--accent-color);
}

.hero .hero-info-bar .info-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 36px;
    transition: 0.3s;
}

.hero .hero-info-bar .info-bar-item:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.hero .hero-info-bar .info-bar-item i {
    font-size: 1.7rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.hero .hero-info-bar .info-bar-item .info-bar-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero .hero-info-bar .info-bar-item .info-bar-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero .hero-info-bar .info-bar-item .info-bar-text strong {
    font-size: 0.92rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero .hero-info-bar .info-bar-item {
        border-right: none;
        border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 88%);
        padding: 18px 24px;
    }

    .hero .hero-info-bar .info-bar-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .hero .hero-slide {
        padding: 100px 0 130px;
    }

    .hero .hero-indicators {
        bottom: 50px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    position: relative;
    overflow: hidden;
}

.about::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 8%, transparent), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 6%, transparent), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .info-block .badge-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color) 10%, var(--background-color));
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.about .info-block h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
    margin-bottom: 20px;
}

.about .info-block .lead-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 12px;
    line-height: 1.7;
}

.about .info-block p {
    line-height: 1.7;
}

.about .highlight-card {
    padding: 28px 24px;
    background: var(--surface-color);
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 6%, transparent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.about .highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color) 12%, transparent);
    border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about .highlight-card .icon-wrap {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    margin-bottom: 16px;
}

.about .highlight-card .icon-wrap i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.about .highlight-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.about .highlight-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .author-block .author-name {
    font-weight: 600;
    font-style: italic;
    margin-bottom: 6px;
    color: var(--heading-color);
}

.about .author-block img {
    max-width: 280px;
    width: 100%;
    height: auto;
    opacity: 0.85;
}

.about .visual-block {
    position: relative;
}

.about .visual-block .main-image-wrapper {
    position: relative;
}

.about .visual-block .main-image-wrapper img {
    border-radius: 16px;
    box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    transition: transform 0.3s ease;
}

.about .visual-block .main-image-wrapper img:hover {
    transform: scale(1.02);
}

.about .visual-block .floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    z-index: 3;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    color: var(--contrast-color);
    padding: 20px 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.about .visual-block .floating-card .metric-number {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--heading-font);
}

.about .visual-block .floating-card .metric-label {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
    white-space: nowrap;
}

.about .visual-block .row img {
    border-radius: 12px;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color) 10%, transparent);
    transition: transform 0.3s ease;
}

.about .visual-block .row img:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .about .visual-block {
        margin-bottom: 2rem;
    }

    .about .visual-block .floating-card {
        bottom: -15px;
        left: -10px;
        padding: 14px 20px;
    }

    .about .visual-block .floating-card .metric-number {
        font-size: 2.2rem;
    }

    .about .visual-block .floating-card .metric-label {
        font-size: 0.8rem;
    }

    .about .info-block h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .about .visual-block .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        text-align: center;
        border-radius: 12px;
    }

    .about .author-block img {
        max-width: 130px;
    }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .filter-tabs {
    margin-bottom: 48px;
}

.menu .filter-tabs ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.menu .filter-tabs ul li {
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: -0.01em;
}

.menu .filter-tabs ul li::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 20%));
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu .filter-tabs ul li:hover {
    color: var(--accent-color);
}

.menu .filter-tabs ul li.filter-active {
    color: var(--accent-color);
}

.menu .filter-tabs ul li.filter-active::after {
    transform: scaleX(1);
}

@media (max-width: 768px) {
    .menu .filter-tabs ul {
        gap: 0;
        border-bottom: none;
    }

    .menu .filter-tabs ul li {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
    }
}

.menu .dish-row {
    display: flex;
    align-items: stretch;
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 94%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.menu .dish-row:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.menu .dish-row.highlighted {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 96%), var(--surface-color));
}

.menu .dish-row.highlighted .dish-header h4::after {
    content: "★";
    margin-left: 8px;
    color: var(--accent-color);
    font-size: 0.85rem;
}

.menu .dish-row .dish-thumb {
    position: relative;
    flex: 0 0 140px;
    min-height: 160px;
    overflow: hidden;
}

.menu .dish-row .dish-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    transition: transform 0.5s ease;
}

.menu .dish-row .dish-thumb:hover img {
    transform: scale(1.1);
}

.menu .dish-row .dish-thumb .tag-stack {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu .dish-row .dish-thumb .tag-stack .tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.menu .dish-row .dish-thumb .tag-stack .tag.tag-veggie {
    background: color-mix(in srgb, #22c55e, transparent 20%);
    color: var(--contrast-color);
}

.menu .dish-row .dish-thumb .tag-stack .tag.tag-ocean {
    background: color-mix(in srgb, #3b82f6, transparent 20%);
    color: var(--contrast-color);
}

.menu .dish-row .dish-thumb .tag-stack .tag.tag-star {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
    color: var(--contrast-color);
}

.menu .dish-row .dish-thumb .tag-stack .tag.tag-amber {
    background: color-mix(in srgb, #f59e0b, transparent 20%);
    color: var(--contrast-color);
}

.menu .dish-row .dish-thumb .tag-stack .tag.tag-exclusive {
    background: color-mix(in srgb, #8b5cf6, transparent 20%);
    color: var(--contrast-color);
}

.menu .dish-row .dish-thumb .tag-stack .tag.tag-leaf {
    background: color-mix(in srgb, #10b981, transparent 20%);
    color: var(--contrast-color);
}

.menu .dish-row .dish-thumb .tag-stack .tag.tag-crimson {
    background: color-mix(in srgb, #ef4444, transparent 20%);
    color: var(--contrast-color);
}

.menu .dish-row .dish-thumb .tag-stack .tag.tag-mint {
    background: color-mix(in srgb, #34d399, transparent 20%);
    color: var(--contrast-color);
}

.menu .dish-row .dish-info {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu .dish-row .dish-info .dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 12px;
}

.menu .dish-row .dish-info .dish-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.menu .dish-row .dish-info .dish-header .dish-price {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ba272c;
    white-space: nowrap;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    padding: 4px 14px;
    border-radius: 20px;
}


.menu .dish-row .dish-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.menu .dish-row .dish-info .dish-meta .heat-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu .dish-row .dish-info .dish-meta .heat-indicator i {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 0.85rem;
}

.menu .dish-row .dish-info .dish-meta .heat-indicator .heat-bar {
    display: block;
    width: 60px;
    height: 4px;
    background: color-mix(in srgb, var(--default-color), transparent 88%);
    border-radius: 4px;
    overflow: hidden;
}

.menu .dish-row .dish-info .dish-meta .heat-indicator .heat-bar .heat-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #f59e0b, #ef4444);
    border-radius: 4px;
    transition: width 0.5s ease;
}

@media (max-width: 576px) {
    .menu .dish-row {
        flex-direction: column;
    }

    .menu .dish-row .dish-thumb {
        flex: 0 0 auto;
        height: auto;
        min-height: unset;
        background: #ffffff;
    }

    .menu .dish-row .dish-thumb img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        transform: none;
    }

    .menu .dish-row .dish-thumb:hover img {
        transform: none;
    }

    .menu .dish-row .dish-info {
        padding: 20px;
    }
}

.menu .info-strip {
    margin-top: 48px;
    padding: 20px 28px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.menu .info-strip .notice-inline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 0.9rem;
}

.menu .info-strip .notice-inline i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.menu .info-strip .download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 20%));
    color: var(--contrast-color);
    text-decoration: none;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: all 0.3s ease;
}

.menu .info-strip .download-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--contrast-color);
}

.menu .info-strip .download-link i {
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .menu .info-strip {
        text-align: center;
    }

    .menu .info-strip .notice-inline {
        justify-content: center;
        margin-bottom: 16px;
    }

    .menu .info-strip .col-lg-4 {
        text-align: center !important;
    }
}

.menu .spotlight-section {
    margin-top: 64px;
    padding: 48px;
    border-radius: 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%), color-mix(in srgb, #6366f1, transparent 96%));
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.menu .spotlight-section .spotlight-header {
    text-align: center;
    margin-bottom: 40px;
}

.menu .spotlight-section .spotlight-header .spotlight-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.menu .spotlight-section .spotlight-header .spotlight-label i {
    font-size: 0.9rem;
}

.menu .spotlight-section .spotlight-header h3 {
    font-size: 1.85rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.menu .spotlight-section .spotlight-header p {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.menu .spotlight-section .spotlight-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 94%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.menu .spotlight-section .spotlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 88%);
}

.menu .spotlight-section .spotlight-card .spotlight-img {
    position: relative;
    height: 100%;
    min-height: 240px;
    overflow: hidden;
}

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

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

.menu .spotlight-section .spotlight-card .spotlight-img .pick-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.menu .spotlight-section .spotlight-card .spotlight-body {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.menu .spotlight-section .spotlight-card .spotlight-body h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.menu .spotlight-section .spotlight-card .spotlight-body p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.menu .spotlight-section .spotlight-card .spotlight-body .spotlight-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.menu .spotlight-section .spotlight-card .spotlight-body .spotlight-footer .spotlight-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.menu .spotlight-section .spotlight-card .spotlight-body .spotlight-footer .spotlight-tags {
    display: flex;
    gap: 6px;
}

.menu .spotlight-section .spotlight-card .spotlight-body .spotlight-footer .spotlight-tags .micro-tag {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.menu .spotlight-section .spotlight-card .spotlight-body .spotlight-footer .spotlight-tags .micro-tag.gf {
    background: color-mix(in srgb, #f59e0b, transparent 88%);
    color: #d97706;
}

.menu .spotlight-section .spotlight-card .spotlight-body .spotlight-footer .spotlight-tags .micro-tag.df {
    background: color-mix(in srgb, #22c55e, transparent 88%);
    color: #16a34a;
}

.menu .spotlight-section .spotlight-card .spotlight-body .spotlight-footer .spotlight-tags .micro-tag.sf {
    background: color-mix(in srgb, #3b82f6, transparent 88%);
    color: #2563eb;
}

.menu .spotlight-section .spotlight-card .spotlight-body .spotlight-footer .spotlight-tags .micro-tag.lux {
    background: color-mix(in srgb, #eab308, transparent 88%);
    color: #a16207;
}

.menu .spotlight-section .spotlight-card .spotlight-body .prep-time {
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.menu .spotlight-section .spotlight-card .spotlight-body .prep-time i {
    color: var(--accent-color);
    margin-right: 4px;
}

@media (max-width: 768px) {
    .menu .spotlight-section {
        padding: 32px 20px;
    }

    .menu .spotlight-section .spotlight-header h3 {
        font-size: 1.5rem;
    }

    .menu .spotlight-section .spotlight-card .spotlight-img {
        min-height: 200px;
    }

    .menu .spotlight-section .spotlight-card .spotlight-body {
        padding: 20px 16px;
    }

    .menu .spotlight-section .spotlight-card .spotlight-body h4 {
        font-size: 1.05rem;
    }

    .menu .spotlight-section .spotlight-card .spotlight-body .spotlight-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    background: radial-gradient(circle at 10% 30%, color-mix(in srgb, var(--accent-color) 6%, transparent), transparent 50%), radial-gradient(circle at 90% 70%, color-mix(in srgb, var(--accent-color) 4%, transparent), transparent 50%);
}

.testimonials .review-card {
    background: var(--surface-color);
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials .review-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 8px rgba(0, 0, 0, 0.06);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.testimonials .reviewer-side {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    padding: 48px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 320px;
}

.testimonials .reviewer-side .reviewer-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.testimonials .reviewer-side .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .reviewer-side h4 {
    color: var(--contrast-color);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.testimonials .reviewer-side .role {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonials .reviewer-side .rating i {
    color: #fbbf24;
    font-size: 16px;
    margin: 0 2px;
}

.testimonials .review-content {
    padding: 48px 40px;
    position: relative;
}

.testimonials .review-content .quote-icon {
    font-size: 48px;
    color: color-mix(in srgb, var(--accent-color), transparent 75%);
    line-height: 1;
    display: block;
    margin-bottom: 16px;
}

.testimonials .review-content p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 24px 0;
    color: var(--default-color);
    font-style: italic;
}

.testimonials .review-content .review-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.testimonials .review-content .review-meta span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: flex;
    align-items: center;
    gap: 6px;
}

.testimonials .review-content .review-meta .badge-verified i {
    color: var(--accent-color);
}

.testimonials .swiper-wrapper {
    height: auto !important;
}

.testimonials .swiper-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.testimonials .swiper-nav-wrap .swiper-button-prev,
.testimonials .swiper-nav-wrap .swiper-button-next {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    margin: 0;
}

.testimonials .swiper-nav-wrap .swiper-button-prev::after,
.testimonials .swiper-nav-wrap .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
    color: var(--default-color);
}

.testimonials .swiper-nav-wrap .swiper-button-prev:hover,
.testimonials .swiper-nav-wrap .swiper-button-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.testimonials .swiper-nav-wrap .swiper-button-prev:hover::after,
.testimonials .swiper-nav-wrap .swiper-button-next:hover::after {
    color: var(--contrast-color);
}

.testimonials .swiper-nav-wrap .swiper-pagination {
    position: static;
    width: auto;
}

.testimonials .swiper-nav-wrap .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: color-mix(in srgb, var(--default-color), transparent 70%);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonials .swiper-nav-wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .testimonials .reviewer-side {
        min-height: auto;
        padding: 32px 24px;
        border-radius: 16px 16px 0 0;
    }

    .testimonials .review-content {
        padding: 32px 24px;
    }

    .testimonials .review-content .quote-icon {
        font-size: 36px;
    }

    .testimonials .review-content p {
        font-size: 15px;
    }

    .testimonials .review-content .review-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs {
    --card-radius: 16px;
    --shadow-soft: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
    --shadow-hover: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 88%);
    --muted-text: color-mix(in srgb, var(--default-color), transparent 40%);
    --accent-light: color-mix(in srgb, var(--accent-color), transparent 90%);
    --accent-border: color-mix(in srgb, var(--accent-color), transparent 75%);
}

.chefs .lead-chef-spotlight {
    background: var(--surface-color);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: box-shadow 0.3s ease;
}

.chefs .lead-chef-spotlight:hover {
    box-shadow: var(--shadow-hover);
}

.chefs .lead-chef-spotlight .spotlight-image {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}

.chefs .lead-chef-spotlight .spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.chefs .lead-chef-spotlight .spotlight-image:hover img {
    transform: scale(1.04);
}

.chefs .lead-chef-spotlight .spotlight-image .accent-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 24px;
    color: var(--contrast-color);
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 20%));
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.chefs .lead-chef-spotlight .spotlight-image .accent-tag i {
    color: #fbbf24;
}

.chefs .lead-chef-spotlight .spotlight-details {
    padding: 40px;
}

.chefs .lead-chef-spotlight .spotlight-details .label-chip {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 24px;
    color: var(--accent-color);
    background: var(--accent-light);
    border: 1px solid var(--accent-border);
    margin-bottom: 16px;
}

.chefs .lead-chef-spotlight .spotlight-details .chef-name {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 4px;
}

.chefs .lead-chef-spotlight .spotlight-details .chef-title {
    color: var(--muted-text);
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 16px;
}

.chefs .lead-chef-spotlight .spotlight-details .chef-summary {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 50ch;
}

.chefs .lead-chef-spotlight .spotlight-details .accolades {
    margin-bottom: 24px;
}

.chefs .lead-chef-spotlight .spotlight-details .accolades li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--default-color);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.chefs .lead-chef-spotlight .spotlight-details .accolades li:last-child {
    border-bottom: none;
}

.chefs .lead-chef-spotlight .spotlight-details .accolades li i {
    font-size: 16px;
    color: var(--accent-color);
}

.chefs .lead-chef-spotlight .spotlight-details .chef-signature img {
    max-width: 140px;
    opacity: 0.8;
    filter: drop-shadow(0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%));
}

@media (max-width: 992px) {
    .chefs .lead-chef-spotlight .spotlight-image {
        min-height: 300px;
    }

    .chefs .lead-chef-spotlight .spotlight-details {
        padding: 32px 24px;
    }

    .chefs .lead-chef-spotlight .spotlight-details .chef-summary {
        max-width: 100%;
    }
}

.chefs .crew-cards .crew-member {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
}

.chefs .crew-cards .crew-member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-border);
}

.chefs .crew-cards .crew-member .member-photo {
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    position: relative;
}

.chefs .crew-cards .crew-member .member-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chefs .crew-cards .crew-member .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.chefs .crew-cards .crew-member:hover .member-photo img {
    transform: scale(1.06);
}

.chefs .crew-cards .crew-member:hover .member-photo::after {
    opacity: 1;
}

.chefs .crew-cards .crew-member .member-info {
    padding: 24px;
}

.chefs .crew-cards .crew-member .member-info .member-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0 0 2px;
}

.chefs .crew-cards .crew-member .member-info .member-role {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.chefs .crew-cards .crew-member .member-info .member-desc {
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 14px;
}

.chefs .crew-cards .crew-member .member-info .member-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.chefs .crew-cards .crew-member .member-info .member-footer .skill-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 24px;
    color: var(--default-color);
    background: var(--accent-light);
    border: 1px solid var(--accent-border);
}

.chefs .crew-cards .crew-member .member-info .member-footer .skill-tag i {
    color: var(--accent-color);
}

.chefs .crew-cards .crew-member .member-info .member-footer .social-links {
    display: flex;
    gap: 6px;
}

.chefs .crew-cards .crew-member .member-info .member-footer .social-links a {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 13px;
    color: var(--muted-text);
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    transition: all 0.3s ease;
}

.chefs .crew-cards .crew-member .member-info .member-footer .social-links a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .chefs .crew-cards .crew-member .member-photo {
        min-height: 180px;
    }

    .chefs .crew-cards .crew-member .member-info {
        padding: 16px;
    }
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table {
    position: relative;
    overflow: hidden;
}

.book-a-table::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.book-a-table::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.book-a-table .container {
    position: relative;
    z-index: 1;
}

.book-a-table .showcase-wrapper {
    position: relative;
    padding: 16px;
}

.book-a-table .showcase-wrapper .showcase-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.book-a-table .showcase-wrapper .showcase-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.book-a-table .showcase-wrapper .showcase-image:hover img {
    transform: scale(1.04);
}

.book-a-table .showcase-wrapper .floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-color);
    border-radius: 12px;
    padding: 14px 20px;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
    z-index: 2;
}

.book-a-table .showcase-wrapper .floating-badge i {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.book-a-table .showcase-wrapper .floating-badge strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
}

.book-a-table .showcase-wrapper .floating-badge span {
    display: block;
    font-size: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.book-a-table .showcase-wrapper .floating-badge.badge-top {
    top: 0;
    right: 0;
}

.book-a-table .showcase-wrapper .floating-badge.badge-bottom {
    bottom: 0;
    left: 0;
}

.book-a-table .booking-panel {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%), 0 2px 4px color-mix(in srgb, var(--default-color), transparent 96%);
}

.book-a-table .booking-panel .panel-header {
    margin-bottom: 24px;
}

.book-a-table .booking-panel .panel-header .panel-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.book-a-table .booking-panel .panel-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.book-a-table .booking-panel .panel-header p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
}

.book-a-table .booking-panel .form-control,
.book-a-table .booking-panel .form-select {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 15px;
    padding: 12px 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.book-a-table .booking-panel .form-control:focus,
.book-a-table .booking-panel .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
    background-color: var(--background-color);
}

.book-a-table .booking-panel .form-control::placeholder,
.book-a-table .booking-panel .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.book-a-table .booking-panel .btn-book {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 20%));
    color: var(--contrast-color);
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 24px;
    margin-top: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.book-a-table .booking-panel .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.book-a-table .booking-panel .panel-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.book-a-table .booking-panel .panel-note i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.book-a-table .booking-panel .panel-note span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

.book-a-table .detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.book-a-table .detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px color-mix(in srgb, var(--default-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.book-a-table .detail-card .detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    border-radius: 10px;
}

.book-a-table .detail-card .detail-icon i {
    font-size: 1.35rem;
    color: var(--accent-color);
}

.book-a-table .detail-card .detail-text h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 6px;
}

.book-a-table .detail-card .detail-text p {
    font-size: 0.88rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.55;
    margin: 0;
}

.book-a-table .detail-card .detail-text small {
    color: color-mix(in srgb, var(--default-color), transparent 45%);
}

@media (max-width: 992px) {
    .book-a-table .showcase-wrapper {
        margin-bottom: 16px;
    }

    .book-a-table .showcase-wrapper .showcase-image img {
        height: 360px;
    }

    .book-a-table .booking-panel {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .book-a-table .showcase-wrapper {
        padding: 8px;
    }

    .book-a-table .showcase-wrapper .showcase-image img {
        height: 260px;
    }

    .book-a-table .showcase-wrapper .floating-badge {
        padding: 10px 14px;
    }

    .book-a-table .showcase-wrapper .floating-badge i {
        font-size: 1.3rem;
    }

    .book-a-table .showcase-wrapper .floating-badge strong {
        font-size: 0.9rem;
    }

    .book-a-table .booking-panel {
        padding: 24px 20px;
    }

    .book-a-table .booking-panel .panel-header h3 {
        font-size: 1.5rem;
    }

    .book-a-table .detail-card {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .contact-tile {
    padding: 40px;
    border-radius: 16px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 8%, transparent), 0 2px 4px color-mix(in srgb, var(--default-color) 4%, transparent);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.location .contact-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color) 12%, transparent), 0 4px 8px color-mix(in srgb, var(--default-color) 6%, transparent);
    border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.location .contact-tile.highlighted {
    border-color: color-mix(in srgb, var(--accent-color) 40%, transparent);
    background: color-mix(in srgb, var(--accent-color) 4%, var(--surface-color));
}

.location .contact-tile .tile-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.location .contact-tile .tile-icon i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.location .contact-tile h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.location .contact-tile p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 8px;
    line-height: 1.6;
}

.location .contact-tile p.hint {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-style: italic;
}

.location .contact-tile .tile-link {
    margin-top: auto;
    padding-top: 16px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.location .contact-tile .tile-link i {
    transition: transform 0.3s ease;
}

.location .contact-tile .tile-link:hover i {
    transform: translateX(4px);
}

.location .contact-tile .schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location .contact-tile .schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed color-mix(in srgb, var(--default-color) 12%, transparent);
    font-size: 0.92rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.location .contact-tile .schedule-list li:last-child {
    border-bottom: none;
}

.location .contact-tile .schedule-list li span:first-child {
    font-weight: 500;
    color: var(--default-color);
}

.location .map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 8%, transparent);
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.location .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.location .action-bar {
    display: inline-flex;
    gap: 16px;
    align-items: center;
}

.location .action-bar .btn-primary-action {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, #6366f1));
    color: var(--contrast-color);
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color) 30%, transparent);
    transition: all 0.3s ease;
}

.location .action-bar .btn-primary-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.location .action-bar .btn-secondary-action {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 24px;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    transition: all 0.3s ease;
}

.location .action-bar .btn-secondary-action:hover {
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .location .contact-tile {
        padding: 28px;
    }

    .location .contact-tile .schedule-list li {
        flex-direction: column;
        gap: 2px;
    }

    .location .map-wrapper {
        height: 280px;
    }

    .location .action-bar {
        flex-direction: column;
        width: 100%;
    }

    .location .action-bar .btn-primary-action,
    .location .action-bar .btn-secondary-action {
        width: 100%;
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .intro-content {
    padding: 2rem 0;
}

.events .intro-content .intro-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 30%));
    color: var(--contrast-color);
    padding: 6px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.events .intro-content h2 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.events .intro-content p {
    font-size: 1.125rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 520px;
}

.events .intro-content .event-date-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 10px 20px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.events .intro-content .event-date-pill i {
    font-size: 1.1rem;
}

.events .intro-content .intro-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.events .intro-content .intro-actions .btn-primary-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 25%));
    color: var(--contrast-color);
    padding: 14px 32px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 60%);
    transition: all 0.3s ease;
}

.events .intro-content .intro-actions .btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
    color: var(--contrast-color);
}

.events .intro-content .intro-actions .btn-secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.events .intro-content .intro-actions .btn-secondary-cta:hover {
    gap: 0.8rem;
}

@media (max-width: 992px) {
    .events .intro-content h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .events .intro-content h2 {
        font-size: 2rem;
    }

    .events .intro-content p {
        font-size: 1rem;
    }
}

.events .intro-visual {
    position: relative;
}

.events .intro-visual img {
    border-radius: 16px;
    box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events .intro-visual .visual-float-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--surface-color);
    padding: 16px 24px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 85%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events .intro-visual .visual-float-card i {
    font-size: 1.5rem;
    color: #f59e0b;
}

.events .intro-visual .visual-float-card strong {
    display: block;
    font-size: 1rem;
    color: var(--heading-color);
}

.events .intro-visual .visual-float-card span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 992px) {
    .events .intro-visual {
        margin-top: 2rem;
    }

    .events .intro-visual .visual-float-card {
        bottom: -15px;
        left: 10px;
    }
}

.events .highlight-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.events .highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 85%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.events .highlight-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(180deg, color-mix(in srgb, var(--accent-color), transparent 96%), var(--surface-color));
}

.events .highlight-card .featured-label {
    position: absolute;
    top: 16px;
    right: -30px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 25%));
    color: var(--contrast-color);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.events .highlight-card .highlight-icon {
    width: 56px;
    height: 56px;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.events .highlight-card .highlight-icon i {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.events .highlight-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.events .highlight-card p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.events .highlight-card .highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.events .highlight-card .highlight-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 6px 0;
    font-weight: 500;
    font-size: 0.95rem;
}

.events .highlight-card .highlight-list li i {
    color: var(--accent-color);
    font-size: 1rem;
}

.events .highlight-card .highlight-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.events .highlight-card .highlight-link:hover {
    gap: 0.9rem;
}

.events .recognition-strip {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 94%), color-mix(in srgb, var(--accent-color), transparent 88%));
    border-radius: 20px;
    padding: 3rem;
}

.events .recognition-strip .recognition-item {
    text-align: center;
    padding: 1.5rem;
}

.events .recognition-strip .recognition-item .recognition-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 25%));
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.events .recognition-strip .recognition-item .recognition-icon i {
    font-size: 1.4rem;
    color: var(--contrast-color);
}

.events .recognition-strip .recognition-item h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.events .recognition-strip .recognition-item span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 768px) {
    .events .recognition-strip {
        padding: 2rem 1.5rem;
    }
}

.events .impact-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
}

.events .impact-card .impact-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.events .impact-card .impact-header i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.events .impact-card .impact-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.events .impact-card .impact-desc {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.events .impact-card .metric-box {
    background: color-mix(in srgb, var(--accent-color), transparent 93%);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.events .impact-card .metric-box:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
}

.events .impact-card .metric-box .metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.events .impact-card .metric-box .metric-label {
    font-size: 0.82rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    line-height: 1.3;
}

.events .green-card {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 92%);
}

.events .green-card .green-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.events .green-card .green-header i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.events .green-card .green-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.events .green-card .green-desc {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.events .green-card .green-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.events .green-card .green-list .green-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 14px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}

.events .green-card .green-list .green-item:last-child {
    border-bottom: none;
}

.events .green-card .green-list .green-item:hover {
    padding-left: 6px;
}

.events .green-card .green-list .green-item .green-item-icon {
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.events .green-card .green-list .green-item .green-item-icon i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.events .green-card .green-list .green-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .restaurant-gallery-filters {
    list-style: none;
    margin-bottom: 2rem;
    padding-left: 0;
}

.gallery .restaurant-gallery-filters li {
    cursor: pointer;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    color: var(--heading-color);
    background-color: color-mix(in srgb, var(--surface-color), var(--accent-color) 7%);
    border: none;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    font-family: var(--heading-font);
    font-size: 1.05rem;
    font-weight: 600;
}

.gallery .restaurant-gallery-filters li.filter-active,
.gallery .restaurant-gallery-filters li:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.gallery .gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 0;
    box-shadow: 0 2px 16px color-mix(in srgb, var(--default-color), transparent 94%);
    background: var(--surface-color);
    display: flex;
    flex-direction: column;
}

.gallery .gallery-card a {
    display: block;
    overflow: hidden;
}

.gallery .gallery-card a img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
    transition: transform 0.3s, filter 0.3s;
}

.gallery .gallery-card:hover img,
.gallery .gallery-card a:focus img {
    transform: scale(1.07);
    filter: brightness(0.92) saturate(1.2);
}

.gallery .gallery-card .caption {
    padding: 1.1rem 1rem 1.2rem;
    background: var(--surface-color);
    border-radius: 0 0 16px 16px;
}

.gallery .gallery-card .caption .caption-title {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.08rem;
    display: block;
    margin-bottom: 0.18rem;
    letter-spacing: 0.01em;
}

.gallery .gallery-card .caption span:not(.caption-title) {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 0.96rem;
    font-family: var(--default-font);
    display: block;
}

@media (max-width: 992px) {
    .gallery .gallery-card .caption {
        padding: 0.85rem 0.7rem 1rem;
    }

    .gallery .restaurant-gallery-filters li {
        font-size: 1rem;
        padding: 0.45rem 1rem;
    }
}

@media (max-width: 576px) {
    .gallery .gallery-card .caption {
        padding: 0.7rem 0.6rem 0.75rem;
    }

    .gallery .gallery-card .caption .caption-title {
        font-size: 1rem;
    }

    .gallery .gallery-card .caption span:not(.caption-title) {
        font-size: 0.92rem;
    }

    .gallery .gallery-card a img {
        border-radius: 12px 12px 0 0;
    }

    .gallery .restaurant-gallery-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .gallery .restaurant-gallery-filters li {
        font-size: 0.95rem;
        padding: 0.38rem 0.8rem;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -160px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 6%, transparent), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color) 5%, transparent), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .form-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 6%, transparent), 0 2px 4px color-mix(in srgb, var(--default-color) 4%, transparent);
    height: 100%;
}

.contact .form-card .form-header {
    margin-bottom: 32px;
}

.contact .form-card .form-header .badge-label {
    display: inline-block;
    background: color-mix(in srgb, var(--accent-color) 12%, transparent);
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 24px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.contact .form-card .form-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.contact .form-card .form-header p {
    color: color-mix(in srgb, var(--default-color) 60%, transparent);
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.6;
}

.contact .form-card label {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-size: 14px;
    display: block;
}

.contact .form-card .form-control {
    height: 48px;
    padding: 12px 16px;
    border: 1px solid color-mix(in srgb, var(--default-color) 20%, transparent);
    border-radius: 8px;
    background: var(--surface-color);
    font-size: 15px;
    color: var(--default-color);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact .form-card .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.contact .form-card .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color) 40%, transparent);
}

.contact .form-card textarea.form-control {
    height: 150px;
    resize: none;
}

.contact .form-card .btn-send {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    color: var(--contrast-color);
    border: none;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color) 30%, transparent);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact .form-card .btn-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.contact .form-card .btn-send:active {
    transform: translateY(0);
}

.contact .form-card .btn-send i {
    font-size: 16px;
    transition: transform 0.3s;
}

.contact .form-card .btn-send:hover i {
    transform: translateX(4px);
}

.contact .sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.contact .info-tile {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
}

.contact .info-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color) 8%, transparent);
    border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
}

.contact .info-tile .tile-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact .info-tile .tile-icon i {
    font-size: 22px;
    color: var(--contrast-color);
}

.contact .info-tile .tile-text h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.contact .info-tile .tile-text p {
    margin-bottom: 2px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color) 65%, transparent);
    line-height: 1.6;
}

.contact .info-tile .tile-text p:last-child {
    margin-bottom: 0;
}

.contact .map-embed {
    flex: 1;
    min-height: 220px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
}

.contact .map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
}

@media (max-width: 992px) {
    .contact .form-card {
        padding: 32px;
        margin-bottom: 16px;
    }

    .contact .sidebar-info {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .contact .form-card {
        padding: 24px;
    }

    .contact .form-card .form-header {
        margin-bottom: 24px;
    }

    .contact .form-card .form-header h3 {
        font-size: 24px;
    }

    .contact .form-card .btn-send {
        width: 100%;
        justify-content: center;
    }

    .contact .map-embed {
        min-height: 200px;
    }

    .contact .map-embed iframe {
        min-height: 200px;
    }
}

@media (max-width: 576px) {
    .contact .form-card {
        padding: 20px;
    }

    .contact .info-tile {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .header-block {
    margin-bottom: 16px;
}

.terms-of-service .header-block .update-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    border-radius: 24px;
    color: var(--contrast-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.terms-of-service .header-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.terms-of-service .header-block p {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.terms-of-service .sidebar-nav {
    position: sticky;
    top: 100px;
    background: var(--surface-color);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color) 6%, transparent);
}

.terms-of-service .sidebar-nav h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 16px;
    font-weight: 700;
}

.terms-of-service .sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-of-service .sidebar-nav ul li {
    margin-bottom: 4px;
}

.terms-of-service .sidebar-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.88rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: all 0.3s ease;
    text-decoration: none;
}

.terms-of-service .sidebar-nav ul li a i {
    font-size: 1rem;
    color: color-mix(in srgb, var(--accent-color), transparent 30%);
}

.terms-of-service .sidebar-nav ul li a:hover {
    background: color-mix(in srgb, var(--accent-color) 8%, transparent);
    color: var(--accent-color);
}

.terms-of-service .sidebar-nav ul li a:hover i {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .terms-of-service .sidebar-nav {
        display: none;
    }
}

.terms-of-service .terms-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.terms-of-service .term-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
    box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color) 4%, transparent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.terms-of-service .term-card:hover {
    box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color) 10%, transparent);
    border-color: color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.terms-of-service .term-card .term-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.terms-of-service .term-card .term-card-header .term-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    color: var(--contrast-color);
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.terms-of-service .term-card .term-card-header h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}

.terms-of-service .term-card p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.terms-of-service .highlight-callout {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: color-mix(in srgb, var(--accent-color) 6%, transparent);
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.terms-of-service .highlight-callout .callout-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--accent-color) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-of-service .highlight-callout .callout-icon i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.terms-of-service .highlight-callout p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.terms-of-service .check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: color-mix(in srgb, var(--accent-color) 5%, transparent);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.terms-of-service .check-item i {
    font-size: 1.1rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .check-item span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.terms-of-service .check-item:hover {
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}

.terms-of-service .warning-banner {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--surface-color);
    border-radius: 12px;
    margin-top: 20px;
    border: 1px solid color-mix(in srgb, var(--accent-color) 25%, transparent);
    border-left: 4px solid var(--accent-color);
}

.terms-of-service .warning-banner .warning-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-of-service .warning-banner .warning-icon-wrap i {
    font-size: 1.3rem;
    color: var(--contrast-color);
}

.terms-of-service .warning-banner .warning-text h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.terms-of-service .warning-banner .warning-text p {
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 576px) {
    .terms-of-service .warning-banner {
        flex-direction: column;
    }
}

.terms-of-service .restrict-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: color-mix(in srgb, #dc3545, transparent 94%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.terms-of-service .restrict-item i {
    font-size: 1.1rem;
    color: #dc3545;
    flex-shrink: 0;
}

.terms-of-service .restrict-item span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.terms-of-service .restrict-item:hover {
    background: color-mix(in srgb, #dc3545, transparent 88%);
}

.terms-of-service .disclaimer-panel {
    background: color-mix(in srgb, var(--default-color) 4%, transparent);
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
}

.terms-of-service .disclaimer-panel .panel-lead {
    font-weight: 600;
    margin-bottom: 12px !important;
    font-size: 0.95rem;
    color: var(--heading-color);
}

.terms-of-service .disclaimer-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-of-service .disclaimer-panel ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.terms-of-service .disclaimer-panel ul li:last-child {
    margin-bottom: 0;
}

.terms-of-service .disclaimer-panel ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
}

.terms-of-service .support-banner {
    margin-top: 32px;
    padding: 32px 40px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    color: var(--contrast-color);
}

.terms-of-service .support-banner .banner-icon {
    width: 52px;
    height: 52px;
    background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-of-service .support-banner .banner-icon i {
    font-size: 1.5rem;
    color: var(--contrast-color);
}

.terms-of-service .support-banner h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--contrast-color);
}

.terms-of-service .support-banner p {
    margin: 0;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.terms-of-service .support-banner .support-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--contrast-color);
    color: var(--accent-color);
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--default-color) 15%, transparent);
}

.terms-of-service .support-banner .support-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color) 25%, transparent);
}

@media (max-width: 768px) {
    .terms-of-service .support-banner {
        padding: 28px 24px;
    }
}

@media print {
    .terms-of-service .support-banner {
        display: none;
    }

    .terms-of-service .sidebar-nav {
        display: none;
    }

    .terms-of-service .term-card {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
    font-size: 1rem;
    line-height: 1.7;
}

.privacy .policy-header {
    padding: 20px 0 50px;
}

.privacy .policy-header .effective-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 24px;
    background: color-mix(in srgb, var(--accent-color) 10%, var(--background-color));
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.privacy .policy-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.privacy .policy-header .lead-text {
    font-size: 1.15rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.privacy .quick-nav {
    margin-bottom: 48px;
    padding: 24px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .quick-nav .nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    transition: all 0.3s ease;
    text-decoration: none;
}

.privacy .quick-nav .nav-pill i {
    font-size: 0.95rem;
}

.privacy .quick-nav .nav-pill:hover {
    background: color-mix(in srgb, var(--accent-color) 12%, var(--background-color));
    color: var(--accent-color);
    transform: translateY(-2px);
}

.privacy .policy-card {
    position: relative;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    border-radius: 16px;
    padding: 40px 40px 40px 100px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy .policy-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.05);
    border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.privacy .policy-card .card-number {
    position: absolute;
    left: 32px;
    top: 40px;
    font-size: 2rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--accent-color) 20%, transparent);
    font-family: var(--heading-font);
    line-height: 1;
    letter-spacing: -0.02em;
}

.privacy .policy-card .card-body-content .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.privacy .policy-card .card-body-content .card-icon i {
    font-size: 1.25rem;
    color: var(--contrast-color);
}

.privacy .policy-card .card-body-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.privacy .policy-card .card-body-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy .policy-card .card-body-content h3 i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.privacy .policy-card .card-body-content p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.privacy .policy-card .card-body-content p:last-child {
    margin-bottom: 0;
}

.privacy .policy-card .card-body-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.privacy .policy-card .card-body-content ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.privacy .policy-card .card-body-content ul li:last-child {
    margin-bottom: 0;
}

.privacy .policy-card .card-body-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color) 40%, transparent);
}

@media (max-width: 768px) {
    .privacy .policy-card {
        padding: 60px 24px 32px 24px;
    }

    .privacy .policy-card .card-number {
        left: 24px;
        top: 20px;
        font-size: 1.5rem;
    }
}

.privacy .sub-card {
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    border-radius: 12px;
    padding: 28px;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 93%);
    transition: all 0.3s ease;
}

.privacy .sub-card:hover {
    border-color: color-mix(in srgb, var(--accent-color) 20%, transparent);
}

.privacy .usage-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.privacy .usage-item i {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.privacy .usage-item span {
    font-size: 0.95rem;
    line-height: 1.5;
}

.privacy .usage-item:hover {
    background: color-mix(in srgb, var(--accent-color) 8%, var(--background-color));
}

.privacy .contact-banner {
    margin-top: 40px;
    padding: 40px 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    color: var(--contrast-color);
}

.privacy .contact-banner h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--contrast-color);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.privacy .contact-banner p {
    color: color-mix(in srgb, var(--contrast-color), transparent 15%);
    margin-bottom: 0;
    font-size: 1rem;
}

.privacy .contact-banner .contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.privacy .contact-banner .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--contrast-color);
    font-size: 0.95rem;
}

.privacy .contact-banner .info-item i {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--contrast-color), transparent 80%);
    border-radius: 10px;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .privacy .contact-banner {
        padding: 32px;
        text-align: center;
    }

    .privacy .contact-banner .contact-info-items {
        margin-top: 24px;
        align-items: center;
    }
}

@media print {
    .privacy {
        font-size: 12pt;
        line-height: 1.5;
    }

    .privacy .quick-nav {
        display: none;
    }

    .privacy .policy-card {
        box-shadow: none;
        border: 1pt solid #ccc;
        page-break-inside: avoid;
        margin-bottom: 16pt;
    }

    .privacy .contact-banner {
        background: none;
        color: #000;
        border: 1pt solid #000;
    }

    .privacy .contact-banner h2,
    .privacy .contact-banner p,
    .privacy .contact-banner .info-item {
        color: #000;
    }
}

@media (max-width: 576px) {
    .privacy .policy-header h1 {
        font-size: 2rem;
    }

    .privacy .policy-header .lead-text {
        font-size: 1.05rem;
    }

    .privacy .contact-banner {
        padding: 24px;
    }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 100px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--background-color);
}

.error-404::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.error-404::after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 95%), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.error-404 .container {
    position: relative;
    z-index: 1;
}

.error-404 .error-visual {
    text-align: center;
    position: relative;
}

.error-404 .error-visual .error-badge {
    display: inline-block;
    padding: 8px 24px;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    color: var(--accent-color);
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.error-404 .error-visual .error-code {
    font-size: clamp(140px, 22vw, 260px);
    font-weight: 700;
    font-family: var(--heading-font);
    line-height: 1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 60%, #a855f7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.error-404 .error-visual .error-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.error-404 .error-visual .error-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.error-404 .error-visual .error-dots span:nth-child(2) {
    background: color-mix(in srgb, var(--accent-color), transparent 40%);
}

.error-404 .error-visual .error-dots span:nth-child(3) {
    background: var(--accent-color);
}

.error-404 .error-content h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.error-404 .error-content p {
    font-size: 18px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 40px;
    max-width: 480px;
}

.error-404 .action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.error-404 .action-buttons .btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 85%, #6366f1));
    color: var(--contrast-color);
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 65%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.error-404 .action-buttons .btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
    color: var(--contrast-color);
}

.error-404 .action-buttons .btn-home i {
    font-size: 18px;
}

.error-404 .action-buttons .btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.error-404 .action-buttons .btn-explore:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    transform: translateY(-2px);
    color: var(--accent-color);
}

.error-404 .action-buttons .btn-explore i {
    font-size: 18px;
}

.error-404 .quick-nav-title {
    font-size: 16px;
    font-weight: 600;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.error-404 .nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 16px;
    text-decoration: none;
    color: var(--default-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 16px;
    box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 95%);
}

.error-404 .nav-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    color: var(--accent-color);
}

.error-404 .nav-card i {
    font-size: 28px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.error-404 .nav-card:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.error-404 .nav-card span {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 992px) {
    .error-404 .error-visual {
        margin-bottom: 16px;
    }

    .error-404 .error-visual .error-code {
        font-size: clamp(100px, 18vw, 180px);
    }

    .error-404 .error-content {
        text-align: center;
    }

    .error-404 .error-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .error-404 .action-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .error-404 {
        padding: 80px 0 60px;
    }

    .error-404 .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .error-404 .action-buttons .btn-home,
    .error-404 .action-buttons .btn-explore {
        width: 100%;
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

/* 1. Barın kendisini bembeyaz ve tam genişlik yapıyoruz */
.hero .hero-info-bar {
    background-color: #ffffff !important;
    width: 100% !important;
    left: 0;
    right: 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 0 !important;
}

/* 2. İçerideki öğelerin renkleri ve hizası */
.hero .hero-info-bar .info-bar-item {
    background-color: transparent !important; /* Arka planı üstten alsın */
    padding: 20px 0; /* Yukarı aşağı biraz nefes alsın */
    justify-content: center; /* İçerikleri kendi içinde ortalar */
}

.hero .hero-info-bar .info-bar-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.hero .hero-info-bar .info-bar-item .info-bar-text span {
    color: #888888 !important;
    font-size: 0.8rem;
    display: block;
}

.hero .hero-info-bar .info-bar-item .info-bar-text strong {
    color: #222222 !important;
    font-size: 0.95rem;
    display: block;
}

/* Contact page header fix */
.contact-page .header {
    --background-color: rgba(0, 0, 0, 0.9);
    --nav-color: #ffffff;
    --nav-hover-color: #ff9f1c;
}

.contact-page .header .topbar {
    background-color: #191818;
}

.contact-page .mobile-nav-toggle {
    color: #ffffff;
}

.contact-page .main {
    padding-top: 150px;
}

/* Reservation page light style */
.reservation-light {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #222222;
    --surface-color: #f8f9fa;
    --contrast-color: #ffffff;
}

.reservation-light .booking-panel,
.reservation-light .detail-card {
    background: var(--surface-color);
    color: var(--default-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.reservation-light .booking-panel h3,
.reservation-light .detail-card h5 {
    color: var(--heading-color);
}

.reservation-light .booking-panel p,
.reservation-light .panel-note,
.reservation-light .detail-card p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.reservation-light .form-control,
.reservation-light .form-select {
    background-color: #ffffff;
    color: #222222;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 75%);
}

.reservation-light .form-control::placeholder {
    color: #999999;
}

.reservation-light .showcase-wrapper img {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.about .visual-block .small-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.menu .filter-tabs li a.category-link {
    color: #888;
}

.menu .filter-tabs li a.active-category-link {
    color: var(--accent-color);
}

.menu .filter-tabs li a {
    text-decoration: none;
}

.elegant-map-placeholder {
    min-height: 260px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(194, 35, 48, 0.08), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(194, 35, 48, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

.map-placeholder-content {
    max-width: 360px;
}

.map-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(194, 35, 48, 0.25);
}

.elegant-map-placeholder h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.elegant-map-placeholder p {
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-map-load {
    border: none;
    border-radius: 999px;
    padding: 13px 24px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(194, 35, 48, 0.22);
    transition: all 0.25s ease;
}

.btn-map-load:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(194, 35, 48, 0.30);
}


.miss-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6366f1 25%));
    color: var(--contrast-color);
    padding: 14px 32px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 60%);
    transition: all 0.3s ease;
}

.miss-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 50%);
    color: var(--contrast-color);
}

.floating-badge {
    text-decoration: none;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.floating-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.menu .filter-tabs ul li {
    cursor: pointer;
}

.menu .filter-tabs ul li a {
    color: inherit;
    display: block;
}

@media (max-width: 991px) {
    .book-a-table .showcase-wrapper {
        margin-bottom: 2rem;
    }

    .book-a-table .showcase-image img {
        width: 100%;
        max-height: 420px;
        object-fit: cover;
        border-radius: 18px;
    }

    .book-a-table .booking-panel {
        padding: 28px 22px;
    }
}

@media (max-width: 575px) {
    .book-a-table .section-title h2 {
        font-size: 34px;
    }

    .book-a-table .section-title p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 12px;
    }

    .book-a-table .showcase-wrapper {
        display: none;
    }

    .book-a-table .booking-panel {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .book-a-table .panel-header h3 {
        font-size: 30px;
        line-height: 1.15;
    }

    .book-a-table .panel-header p {
        font-size: 16px;
        line-height: 1.6;
    }

    .book-a-table .form-control,
    .book-a-table .form-select {
        min-height: 56px;
        font-size: 16px;
    }

    .book-a-table textarea.form-control {
        min-height: 120px;
    }

    .book-a-table .btn-book {
        min-height: 58px;
        font-size: 17px;
    }

    .book-a-table .alert {
        font-size: 15px;
        line-height: 1.55;
    }

    .book-a-table .panel-note {
        align-items: flex-start;
        font-size: 14px;
        line-height: 1.5;
    }

    .book-a-table .detail-card {
        text-align: left;
    }
}

.reservation-date-input {
    cursor: pointer;
}

.reservation-date-input::-webkit-calendar-picker-indicator {
    cursor: pointer;
}

/* Catering page header fix */
.catering-page .header {
    --background-color: rgba(0, 0, 0, 0.9);
    --nav-color: #ffffff;
    --nav-hover-color: #ff9f1c;
}

.catering-page .header .topbar {
    background-color: #191818;
}

.catering-page .mobile-nav-toggle {
    color: #ffffff;
}

.catering-page .main {
    padding-top: 150px;
}

.turkish-motifs-1{
    position: relative;
    overflow: hidden;
    background: #fff;
    border-top: 2px solid #c62828;
}

/* Türk motifleri */
.turkish-motifs-1::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:url("/assets/img/turkish-motifs.png");
    background-repeat:repeat;
    background-size:170px auto;
    background-position:center;

    opacity:.08;
    z-index:0;
}

/* İçerik üstte kalsın */
.turkish-motifs-1 .container{
    position:relative;
    z-index:1;
}


.turkish-motifs-2{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(185,28,28,.18);
    background:#fffafa;
}

/* Motif */
.turkish-motifs-2::before{
    content:"";
    position:absolute;
    pointer-events: none;
    inset:0;

    background-image:url("/assets/img/turkish-motifs.png");
    background-repeat:repeat;
    background-size:180px auto;
    background-position:center;

    opacity:.10;
    z-index:0;
}

.turkish-motifs-2 > *{
    position:relative;
    z-index:1;
}

/* Yazılar üstte */
.turkish-motifs-2 .map-placeholder-content{
    position:relative;
    z-index:2;

    max-width:520px;
    margin:auto;
    padding:42px 24px;

    background:radial-gradient(
        circle,
        rgba(255,255,255,.98) 0%,
        rgba(255,255,255,.93) 55%,
        rgba(255,255,255,0) 82%
    );
}

.turkish-motifs-2 a.btn-map-load,
.turkish-motifs-2 a.btn-map-load:visited,
.turkish-motifs-2 a.btn-map-load:hover,
.turkish-motifs-2 a.btn-map-load:focus,
.turkish-motifs-2 a.btn-map-load:active {
    color: #fff !important;
    text-decoration: none !important;
}

.turkish-motifs-2 a.btn-map-load:hover i,
.turkish-motifs-2 a.btn-map-load:focus i,
.turkish-motifs-2 a.btn-map-load:active i {
    color: #fff !important;
}


