/**
* Template Name: Platia
* Template URL: https://bootstrapmade.com/platia-bootstrap-restaurant-template/
* Updated: Aug 11 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Open Sans",  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: "Montserrat",  sans-serif;
  --nav-font: "Montserrat",  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: #000000; /* Dark Blue */
  --default-color: #ffffff; /* White text */
  --heading-color: #ffffff; /* White headings */
  --accent-color: #ff8c00; /* Orange */
  --surface-color: #262626; /* Darker smoke for cards */
  --contrast-color: #000000; /* Black text on accent */
  --soft-border: color-mix(in srgb, var(--default-color), transparent 85%);
  --muted-text: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* 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: #e0e0e0;  /* Silver nav links */
  --nav-hover-color: #ff8c00; /* Orange hover */
  --nav-mobile-background-color: #1a1a1a; /* Dark mobile menu */
  --nav-dropdown-background-color: #262626; /* Dark dropdown */
  --nav-dropdown-color: #e0e0e0; /* Silver dropdown text */
  --nav-dropdown-hover-color: #ff8c00; /* Orange hover */
}

/* 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: #e0e0e0; /* Silver background */
  --surface-color: #ffffff; /* White surface */
  --default-color: #1a1a1a; /* Dark text */
  --heading-color: #000000; /* Black headings */
  background-color: var(--background-color);
  text-shadow: none;
}

.dark-background {
  --background-color: #000000; /* Dark Blue background */
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #111111;
  --contrast-color: #ffffff;
  background-color: transparent;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #000000;
  min-height: 100vh;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  position: relative;
}

/* Background Image with Blur */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -2;
  background: url("../img/12.jpeg") no-repeat center center;
  background-size: cover;
  filter: blur(10px) brightness(0.5);
  transform: scale(1.1);
  pointer-events: none;
}

#fire-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

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);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header .topbar {
  background-color: rgba(0, 0, 0, 0.5);
  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: 100px;
  margin-right: 8px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 12px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header .logo:hover img {
  transform: scale(1.1) rotate(-3deg);
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 10px color-mix(in srgb, var(--accent-color), transparent 50%);
  background: rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 991px) {
  .header .logo img {
    max-height: 60px;
  }
  .header .logo h1 {
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .header .logo img {
    max-height: 50px;
    margin-right: 0;
  }
  .header .logo h1 {
    font-size: 20px;
  }
}

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

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

.scrolled .header .logo img {
  max-height: 60px;
}

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

/*--------------------------------------------------------------
# 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: "Baguede Grotesque Sans Serif", sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu > ul > li > a {
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    padding: 8px 20px;
    margin: 0 5px;
  }

  .navmenu > ul > li > a:hover,
  .navmenu > ul > li > a.active,
  .navmenu > ul > li:hover > a {
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--heading-color);
    font-weight: bold;
    font-style: italic;
    font-size: 16px;
  }

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

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: rgba(38, 38, 38, 0.95);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 50%;
    top: 120%;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(-50%, 10px) scale(0.95);
    transform-origin: top center;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 99;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  }

  .navmenu .dropdown ul::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(38, 38, 38, 0.95);
    transform: translateX(-50%) rotate(45deg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 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);
    justify-content: flex-start;
    font-weight: 500;
  }

  .navmenu .dropdown ul a i {
    font-size: 14px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 25px;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: calc(100% + 5px);
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
  }

  .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(--default-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
  }

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

  .navmenu ul {
    display: none;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9998;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    overflow-y: auto;
  }

  .navmenu a,
  .navmenu a:focus {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    font-family: "Baguede Grotesque Sans Serif", sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    display: inline-block;
  }

  .navmenu .dropdown .toggle-dropdown {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
  }

  .navmenu .dropdown .toggle-dropdown:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu .dropdown > a.active .toggle-dropdown {
    transform: translateY(-50%) rotate(180deg);
    background: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: transparent;
    border: none;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: transparent;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: transparent;
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    top: 20px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
    transform: rotate(90deg);
  }

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

  .mobile-nav-active .navmenu ul li {
    opacity: 0;
    animation: slideInMobileItem 0.4s ease forwards;
  }

  .mobile-nav-active .navmenu ul li:nth-child(1) { animation-delay: 0.1s; }
  .mobile-nav-active .navmenu ul li:nth-child(2) { animation-delay: 0.2s; }
  .mobile-nav-active .navmenu ul li:nth-child(3) { animation-delay: 0.3s; }
  .mobile-nav-active .navmenu ul li:nth-child(4) { animation-delay: 0.4s; }
  .mobile-nav-active .navmenu ul li:nth-child(5) { animation-delay: 0.5s; }
  .mobile-nav-active .navmenu ul li:nth-child(6) { animation-delay: 0.6s; }
  .mobile-nav-active .navmenu ul li:nth-child(7) { animation-delay: 0.7s; }
  .mobile-nav-active .navmenu ul li:nth-child(8) { animation-delay: 0.8s; }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  font-size: 14px;
  padding: 10px 0 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .row.gy-5 {
  --bs-gutter-y: 1rem;
}

.footer .footer-content .logo {
  line-height: 1;
  margin-bottom: 10px !important;
}

.footer .footer-content .logo img {
  max-height: 80px;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 30px !important;
}

.footer .newsletter-form {
  margin-top: 15px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 8px 15px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 8px 15px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.footer .footer-links ul li {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 100%;
}

.footer .footer-links ul li:hover {
  transform: translateY(-5px) scale(1.02);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.footer .footer-links ul li:hover a {
  color: var(--contrast-color);
}

.footer .footer-links ul li:hover a i {
  color: var(--contrast-color);
}

.footer .footer-links ul a {
  color: var(--default-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}

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

.footer .footer-links ul a i {
  display: inline-block;
  margin-right: 8px;
  color: var(--accent-color);
  font-size: 1rem;
  transition: 0.3s;
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 32px;
  height: 32px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 14px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 13px;
  line-height: 1.5;
}

.footer .footer-contact .contact-item .contact-info a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

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

.footer .social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer .social-links a {
  width: 36px;
  height: 36px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 14px;
}

.footer .footer-bottom {
  margin-top: 30px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding-top: 40px;
  }

  .footer .row.gy-5 {
    --bs-gutter-y: 2.5rem;
  }

  .footer .row.gy-5 > * {
    width: 100%;
  }
  
  .footer .footer-content,
  .footer .footer-links,
  .footer .footer-contact,
  .footer .newsletter-form {
    margin-bottom: 20px;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer .footer-content p {
    display: block;
    margin: 15px 0;
  }

  .footer .footer-content .logo {
    justify-content: center;
    margin-bottom: 5px !important;
  }

  .footer .footer-content .logo span {
    font-size: 24px;
  }

  .footer .footer-links ul {
    display: flex;
    justify-content: center;
    gap: 10px 20px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .footer .footer-links ul li {
    width: auto;
    flex: 1 1 40%;
    justify-content: center;
  }

  .footer .footer-links ul a {
    font-size: 15px;
    justify-content: center;
    width: auto;
  }

  .footer .footer-contact {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer h4 {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer .footer-contact h4:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer .footer-contact .contact-item {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    gap: 10px;
    text-align: left;
  }

  .footer .footer-contact .contact-item .contact-info {
    text-align: left;
  }

  .footer .footer-contact .contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 0;
    font-size: 18px;
  }

  .footer .footer-contact .contact-icon i {
    font-size: 18px;
  }

  .footer .social-links {
    justify-content: center;
    margin-top: 10px;
  }

  .footer .social-links a {
    width: 40px;
    height: 40px;
  }

  .footer .footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .footer .footer-bottom .copyright p {
    font-size: 13px;
  }
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# 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;
  background-attachment: fixed;
}

.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%);
}

/* Parallax Effect Utility */
.parallax-section {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

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

@media (max-width: 1199px) {

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

@media (max-width: 768px) {
  section,
  .section {
    padding: 40px 0;
  }
}

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

.section-title h2 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 3.25rem);
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 200px;
  position: relative;
  min-height: 100vh;
  overflow: visible;
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}

@media (max-width: 991px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 40px;
    min-height: auto;
  }
}

.hero .hero-content {
  position: relative;
  display: flex;
  z-index: 1;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .hero-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: color-mix(in srgb, var(--background-color), transparent 30%);
}

.hero .hero-text .tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 15px;
  font-family: var(--nav-font);
}

.hero .hero-text .hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero .hero-text .hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .hero .hero-text .hero-title {
    font-size: 2.5rem; /* Fallback */
  }

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

.hero .hero-text .hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  max-width: 580px;
}

@media (max-width: 768px) {
  .hero .hero-text .hero-description {
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero .hero-text .hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

@media (max-width: 991px) {
  .hero .hero-text .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero .hero-text .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero .hero-text .hero-actions .btn {
    min-width: 0;
    flex: 1 1 40%;
    padding: 12px 10px;
  }

  .hero .hero-text .hero-actions a.btn-primary {
    order: 1;
  }

  .hero .hero-text .hero-actions .mobile-order-toggle {
    order: 2;
  }

  .hero .hero-text .hero-actions .btn-outline {
    order: 3;
    flex-basis: 100%;
  }
}

.hero .hero-text .hero-actions .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 160px;
  text-align: center;
}

.hero .hero-text .hero-actions .btn.btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-text .hero-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.hero .hero-text .hero-actions .btn.btn-outline {
  background-color: transparent;
  border: 2px solid var(--default-color);
  color: var(--default-color);
}

.hero .hero-text .hero-actions .btn.btn-outline:hover {
  transform: translateY(-2px);
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.hero .dropdown-menu {
  background: rgba(38, 38, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  margin-top: 0 !important;
  margin-left: 10px !important;
  display: block;
  visibility: hidden;
  opacity: 0;
  top: 50%;
  left: 100%;
  right: auto;
  transform: translate(-10px, -50%) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center left;
  border-radius: 8px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.hero .dropdown-item {
  color: #e0e0e0;
  padding: 10px 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.hero .dropdown-item:hover, .hero .dropdown-item:focus {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 25px;
}

.hero .dropdown:hover > .dropdown-menu,
.hero .dropdown-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

.hero .hero-text .hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero .hero-text .hero-features {
    gap: 20px;
    justify-content: center;
  }
}

.hero .hero-text .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 576px) {
  .hero .hero-text .hero-features .feature-item {
    width: 100%;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 8px;
  }

  .hero .hero-text .hero-features .feature-item .feature-text {
    flex: 1;
    text-align: center;
  }
}

.hero .hero-text .hero-features .feature-item i {
  font-size: 20px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.hero .hero-text .hero-features .feature-item .feature-text {
  display: flex;
  flex-direction: column;
}

.hero .hero-text .hero-features .feature-item .feature-text .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2px;
}

.hero .hero-text .hero-features .feature-item .feature-text .value {
  font-size: 14px;
  font-weight: 500;
}

.hero .hero-text .hero-features .feature-item .feature-text .value a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.hero .hero-text .hero-features .feature-item .feature-text .value a:hover {
  color: var(--accent-color);
}

.hero .booking-card {
  background: color-mix(in srgb, var(--surface-color), transparent 70%);
  border: 1px solid color-mix(in srgb, var(--contrast-color), transparent 90%);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
  .hero .booking-card {
    margin-top: 50px;
    padding: 30px;
  }
}

.hero .booking-card h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.hero .booking-card .form-control,
.hero .booking-card select {
  padding: 12px 15px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  color: var(--default-color);
  background-color: transparent;
}

.hero .booking-card .form-control:focus,
.hero .booking-card select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .booking-card .form-control::placeholder,
.hero .booking-card select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.hero .booking-card select {
  cursor: pointer;
}

.hero .booking-card textarea {
  resize: vertical;
  min-height: 80px;
}

.hero .booking-card .btn-primary {
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  color: var(--contrast-color);
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.hero .booking-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.hero .scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--contrast-color);
}

.hero .scroll-indicator .scroll-text {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

.hero .scroll-indicator .scroll-arrow {
  animation: bounce 2s infinite;
}

.hero .scroll-indicator .scroll-arrow i {
  font-size: 20px;
  color: var(--accent-color);
}

@keyframes bounce {

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

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

  60% {
    transform: translateY(-5px);
  }
}

.hero .hero-image-wrapper {
  position: relative;
  z-index: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero .hero-image-wrapper::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, transparent 70%);
  z-index: -1;
  border-radius: 50%;
  filter: blur(20px);
  animation: pulse-glow 4s ease-in-out infinite alternate;
}

.hero .hero-image {
  position: relative;
  border: 3px solid var(--accent-color);
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px color-mix(in srgb, var(--accent-color), transparent 50%);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px;
}

.hero .hero-image:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 60px color-mix(in srgb, var(--accent-color), transparent 30%);
  background: rgba(255, 255, 255, 0.08);
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); opacity: 0.6; }
  100% { transform: scale(1.05); opacity: 1; }
}

/* Mobile Hero Logo Animation */
.mobile-hero-logo {
  animation: mobile-bounce 3s infinite ease-in-out;
}

@keyframes mobile-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-7px); }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-content h2 {
  margin-bottom: 1.5rem;
  font-weight: 700;
  position: relative;
}

.about .about-content .fst-italic {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.about .about-content .feature-item {
  margin-bottom: 1.5rem;
  padding: 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about .about-content .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about .about-content .feature-item i {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 12px;
  display: inline-block;
}

.about .about-content .feature-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.about .about-content .feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about .about-content .signature .chef-name {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 5px;
}

.about .about-content .signature img {
  max-width: 180px;
  height: auto;
  margin-top: 5px;
}

.about .about-gallery {
  position: relative;
}

.about .about-gallery .years-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 2;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: clamp(10px, 2vw, 15px) clamp(15px, 3vw, 25px);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about .about-gallery .years-badge .number {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
}

.about .about-gallery .years-badge .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.about .about-gallery img {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  object-fit: cover;
}

.about .about-gallery img:hover {
  transform: scale(1.02);
}

@media (max-width: 992px) {
  .about .about-gallery {
    margin-top: 2rem;
  }

  .about .about-gallery .years-badge {
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
  }

  .about .about-gallery .years-badge .number {
    font-size: 2rem;
  }

  .about .about-gallery .years-badge .text {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .about .about-gallery .years-badge {
    bottom: 15px;
    right: 15px;
    padding: 10px 15px;
  }

  .about .about-gallery .years-badge .number {
    font-size: 1.5rem;
  }

  .about .about-gallery .years-badge .text {
    font-size: 0.75rem;
  }

  .about .about-content .signature img {
    max-width: 150px;
  }
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .menu-filters ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: var(--surface-color);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.menu .menu-filters ul li {
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 40px;
  background-color: transparent;
  color: var(--default-color);
  transition: all 0.3s ease;
  position: relative;
}

.menu .menu-filters ul li:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.menu .menu-filters ul li.filter-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 768px) {
  .menu .menu-filters ul {
    background-color: transparent;
    box-shadow: none;
  }

  .menu .menu-filters ul li {
    padding: 8px 16px;
    font-size: 0.85rem;
    background-color: var(--surface-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
}

.menu .menu-grid .menu-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
}

.menu .menu-grid .menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.menu .menu-grid .menu-card.featured {
  border: 2px solid var(--accent-color);
}

.menu .menu-grid .menu-card.featured:before {
  content: "Featured";
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 40px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
  z-index: 5;
}

.menu .menu-grid .menu-card .menu-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

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

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

.menu .menu-grid .menu-card .menu-card-image .dietary-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu .menu-grid .menu-card .menu-card-image .dietary-badges span {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.menu .menu-grid .menu-card .menu-card-image .dietary-badges .badge-vegetarian {
  background-color: color-mix(in srgb, green, transparent 20%);
  color: var(--contrast-color);
}

.menu .menu-grid .menu-card .menu-card-image .dietary-badges .badge-vegan {
  background-color: color-mix(in srgb, #228B22, transparent 20%);
  color: var(--contrast-color);
}

.menu .menu-grid .menu-card .menu-card-image .dietary-badges .badge-gluten-free {
  background-color: color-mix(in srgb, #FFA500, transparent 20%);
  color: var(--contrast-color);
}

.menu .menu-grid .menu-card .menu-card-image .dietary-badges .badge-seafood {
  background-color: color-mix(in srgb, #4682B4, transparent 20%);
  color: var(--contrast-color);
}

.menu .menu-grid .menu-card .menu-card-image .dietary-badges .badge-chef {
  background-color: color-mix(in srgb, #FFD700, transparent 20%);
  color: var(--default-color);
}

.menu .menu-grid .menu-card .menu-card-image .dietary-badges .badge-signature {
  background-color: color-mix(in srgb, #8B008B, transparent 20%);
  color: var(--contrast-color);
}

.menu .menu-grid .menu-card .menu-card-image .dietary-badges .badge-alcoholic {
  background-color: color-mix(in srgb, #DC143C, transparent 20%);
  color: var(--contrast-color);
}

.menu .menu-grid .menu-card .menu-card-image .dietary-badges .badge-fresh {
  background-color: color-mix(in srgb, #32CD32, transparent 20%);
  color: var(--contrast-color);
}

.menu .menu-grid .menu-card .menu-card-image .price-overlay {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu .menu-grid .menu-card .menu-card-content {
  padding: 24px;
}

.menu .menu-grid .menu-card .menu-card-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--heading-color);
}

.menu .menu-grid .menu-card .menu-card-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.menu .menu-grid .menu-card .menu-card-content .spice-level {
  display: flex;
  gap: 4px;
  align-items: center;
}

.menu .menu-grid .menu-card .menu-card-content .spice-level .spice-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
  transition: background-color 0.3s;
}

.menu .menu-grid .menu-card .menu-card-content .spice-level .spice-dot.active {
  background-color: var(--accent-color);
}

.menu .menu-actions {
  margin-top: 3rem;
  padding: 24px;
  background-color: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.menu .menu-actions .seasonal-notice i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.menu .menu-actions .menu-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.menu .menu-actions .menu-download-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.menu .menu-actions .menu-download-btn i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .menu .menu-actions {
    text-align: center;
  }

  .menu .menu-actions .row>div {
    margin-bottom: 1rem;
  }

  .menu .menu-actions .menu-download-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
  }
}

.menu .chef-recommendations {
  margin-top: 4rem;
}

.menu .chef-recommendations .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.menu .chef-recommendations .section-header h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.menu .chef-recommendations .section-header h3 i {
  color: var(--accent-color);
}

.menu .chef-recommendations .section-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
}

.menu .chef-recommendations .recommendation-card {
  background-color: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.menu .chef-recommendations .recommendation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.menu .chef-recommendations .recommendation-card .recommendation-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

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

.menu .chef-recommendations .recommendation-card .recommendation-image .chef-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #FF6B6B 30%));
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.menu .chef-recommendations .recommendation-card .recommendation-image .chef-badge i {
  font-size: 1rem;
}

.menu .chef-recommendations .recommendation-card .recommendation-content {
  padding: 30px;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-header h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
  flex: 1;
  margin-right: 15px;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-header .recommendation-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-color);
  white-space: nowrap;
}

.menu .chef-recommendations .recommendation-card .recommendation-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details .serving-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.85rem;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details .serving-info i {
  color: var(--accent-color);
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details .dietary-info {
  display: flex;
  gap: 6px;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details .dietary-info .mini-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
  text-transform: uppercase;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details .dietary-info .mini-badge.gluten-free {
  background-color: color-mix(in srgb, #FFA500, transparent 85%);
  color: #FFA500;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details .dietary-info .mini-badge.dairy-free {
  background-color: color-mix(in srgb, #32CD32, transparent 85%);
  color: #32CD32;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details .dietary-info .mini-badge.seafood {
  background-color: color-mix(in srgb, #4682B4, transparent 85%);
  color: #4682B4;
}

.menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details .dietary-info .mini-badge.premium {
  background-color: color-mix(in srgb, #FFD700, transparent 85%);
  color: #B8860B;
}

@media (max-width: 1200px) {
  .menu .menu-grid .menu-card .menu-card-content {
    padding: 20px;
  }

  .menu .menu-grid .menu-card .menu-card-content h4 {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .menu .chef-recommendations .section-header h3 {
    font-size: 1.6rem;
    flex-direction: column;
    gap: 8px;
  }

  .menu .menu-grid .menu-card .menu-card-image {
    height: 220px;
  }

  .menu .chef-recommendations .recommendation-card .recommendation-content {
    padding: 24px;
  }

  .menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-header h4 {
    margin-right: 0;
    font-size: 1.25rem;
  }

  .menu .chef-recommendations .recommendation-card .recommendation-content .recommendation-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .menu .menu-grid .menu-card .menu-card-image {
    height: 200px;
  }

  .menu .menu-grid .menu-card .menu-card-image .price-overlay {
    font-size: 1rem;
    padding: 6px 12px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 16px;
  color: #f7b50d;
}

.testimonials .testimonial-item .stars i {
  font-size: 18px;
  margin: 0 2px;
}

.testimonials .testimonial-item p {
  font-size: 15px;
  font-style: italic;
  margin: 0 0 20px 0;
}

.testimonials .testimonial-item .profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonials .testimonial-item .profile .testimonial-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.testimonials .testimonial-item .profile .info h4 i {
  font-size: 14px;
  color: var(--accent-color);
  margin-left: 4px;
}

.testimonials .testimonial-item .profile .info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

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

.testimonials .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  width: 20px;
  border-radius: 4px;
}

@media (max-width: 1199.98px) {
  .testimonials .testimonial-item {
    margin: 0;
  }
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs {
  /* Custom properties */
  --card-radius: 14px;
  --photo-radius: 18px;
  --shadow-color: color-mix(in srgb, var(--default-color), transparent 92%);
  --accent-soft: color-mix(in srgb, var(--accent-color), transparent 85%);
  --accent-tint: color-mix(in srgb, var(--accent-color), white 85%);
}

.chefs .featured-chef .chef-photo {
  position: relative;
  border-radius: var(--photo-radius);
  overflow: hidden;
  box-shadow: 0 16px 40px var(--shadow-color);
}

.chefs .featured-chef .chef-photo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.chefs .featured-chef .chef-photo:hover img {
  transform: scale(1.05);
}

.chefs .featured-chef .chef-photo .badge-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
}

.chefs .featured-chef .chef-photo .badge-overlay .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
  color: var(--default-color);
  background: var(--accent-tint);
  border: 1px solid var(--accent-soft);
}

.chefs .featured-chef .chef-photo .badge-overlay .pill i {
  color: var(--accent-color);
}

.chefs .featured-chef .chef-content .topline {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.chefs .featured-chef .chef-content .name {
  margin: 0 0 6px 0;
}

.chefs .featured-chef .chef-content .role {
  margin: 0;
  color: var(--muted-text);
  font-weight: 500;
}

.chefs .featured-chef .chef-content .bio {
  max-width: 56ch;
}

.chefs .featured-chef .chef-content .awards .award-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--default-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid var(--accent-soft);
}

.chefs .featured-chef .chef-content .awards .award-badge i {
  color: var(--accent-color);
}

.chefs .featured-chef .chef-content .signature img {
  max-width: 150px;
  opacity: 0.85;
  filter: drop-shadow(0 2px 6px var(--shadow-color));
}

.chefs .team-grid .chef-card {
  background: var(--surface-color);
  border: 1px solid var(--soft-border);
  border-radius: var(--card-radius);
  box-shadow: 0 12px 32px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chefs .team-grid .chef-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px color-mix(in srgb, var(--default-color), transparent 88%);
}

.chefs .team-grid .chef-card .image-wrapper {
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--card-radius);
  border-top-right-radius: var(--card-radius);
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
}

.chefs .team-grid .chef-card .image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.3s ease;
}

.chefs .team-grid .chef-card .image-wrapper .social {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}

.chefs .team-grid .chef-card .image-wrapper .social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--background-color);
  color: var(--default-color);
  border: 1px solid var(--soft-border);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.chefs .team-grid .chef-card .image-wrapper .social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.chefs .team-grid .chef-card:hover .image-wrapper img {
  transform: scale(1.06);
}

.chefs .team-grid .chef-card:hover .image-wrapper .social {
  opacity: 1;
  transform: translateY(0);
}

.chefs .team-grid .chef-card .content .name {
  margin: 0;
}

.chefs .team-grid .chef-card .content .role {
  color: var(--muted-text);
  font-size: 14px;
  margin-bottom: 8px;
}

.chefs .team-grid .chef-card .content .excerpt {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 12px;
}

.chefs .team-grid .chef-card .content .mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 999px;
  color: var(--default-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border: 1px solid var(--accent-soft);
}

.chefs .team-grid .chef-card .content .mini-badge i {
  color: var(--accent-color);
}

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

@media (max-width: 768px) {
  .chefs .featured-chef .chef-content .bio {
    max-width: 100%;
  }

  .chefs .team-grid .chef-card .image-wrapper .social a {
    width: 34px;
    height: 34px;
  }
}

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

.book-a-table .reservation-container {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.book-a-table .reservation-form-section {
  padding: 3rem 2.5rem;
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
  height: 100%;
}

.book-a-table .reservation-form-section .form-header {
  margin-bottom: 2rem;
}

.book-a-table .reservation-form-section .form-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.book-a-table .reservation-form-section .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 1rem;
  line-height: 1.6;
}

.book-a-table .reservation-form-section .form-control,
.book-a-table .reservation-form-section .form-select {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.book-a-table .reservation-form-section .form-control:focus,
.book-a-table .reservation-form-section .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 75%);
  background-color: var(--background-color);
}

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

.book-a-table .reservation-form-section .btn-reserve {
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 15%));
  color: var(--contrast-color);
  border: none;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
}

.book-a-table .reservation-form-section .btn-reserve:hover {
  background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), black 10%), color-mix(in srgb, var(--accent-color), blue 25%));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.book-a-table .reservation-info-section {
  background: var(--background-color);
  padding: 2rem;
}

.book-a-table .reservation-info-section .hero-image {
  position: relative;
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
}

.book-a-table .reservation-info-section .hero-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.book-a-table .reservation-info-section .hero-image .overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, color-mix(in srgb, #000000, transparent 20%));
  padding: 2rem 1.5rem 1.5rem;
  color: var(--contrast-color);
}

.book-a-table .reservation-info-section .hero-image .overlay-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--contrast-color);
}

.book-a-table .reservation-info-section .hero-image .overlay-content p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.book-a-table .reservation-info-section .hero-image:hover img {
  transform: scale(1.05);
}

.book-a-table .reservation-info-section .info-cards {
  margin-bottom: 1.5rem;
}

.book-a-table .reservation-info-section .info-cards .info-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.book-a-table .reservation-info-section .info-cards .info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
  border-color: var(--accent-color);
}

.book-a-table .reservation-info-section .info-cards .info-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.book-a-table .reservation-info-section .info-cards .info-card .card-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.book-a-table .reservation-info-section .info-cards .info-card .card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
}

.book-a-table .reservation-info-section .info-cards .info-card .card-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.book-a-table .reservation-info-section .info-cards .info-card .card-content small {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.book-a-table .reservation-info-section .info-cards .info-card .card-content em {
  color: color-mix(in srgb, var(--accent-color), black 20%);
  font-weight: 500;
}

.book-a-table .reservation-info-section .additional-info .info-highlight {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.book-a-table .reservation-info-section .additional-info .info-highlight i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.book-a-table .reservation-info-section .additional-info .info-highlight span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--default-color);
}

@media (max-width: 991px) {
  .book-a-table .reservation-form-section {
    padding: 2.5rem 2rem;
    margin-bottom: 0;
  }

  .book-a-table .reservation-info-section {
    padding: 2rem 1.5rem;
  }

  .book-a-table .hero-image {
    margin-bottom: 1.5rem !important;
  }

  .book-a-table .hero-image img {
    height: 200px !important;
  }
}

@media (max-width: 767px) {
  .book-a-table .reservation-container {
    border-radius: 8px;
  }

  .book-a-table .reservation-form-section {
    padding: 2rem 1.5rem;
  }

  .book-a-table .reservation-form-section .form-header h3 {
    font-size: 1.8rem;
  }

  .book-a-table .reservation-info-section {
    padding: 1.5rem;
  }

  .book-a-table .reservation-info-section .hero-image img {
    height: 180px !important;
  }

  .book-a-table .reservation-info-section .info-card {
    padding: 1.25rem !important;
  }
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location .row {
  align-items: stretch;
}

.location .map-container {
  height: auto;
  min-height: 450px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.location .map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location .info-container {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  flex-direction: column;
}

.location .info-container .section-header {
  margin-bottom: 2rem;
  text-align: center;
}

.location .info-container .section-header h2 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-size: 2.2rem;
}

.location .info-container .section-header p {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.location .info-card {
  display: flex;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.location .info-card:last-of-type {
  border-bottom: none;
}

.location .info-card .info-icon {
  flex-shrink: 0;
  margin-right: 1rem;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location .info-card .info-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.location .info-card .info-content h3 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.location .info-card .info-content p {
  margin-bottom: 0.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.location .info-card .info-content p a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.location .info-card .info-content p a:hover {
  color: var(--accent-color);
}

.location .info-card .info-content p.small-text {
  font-size: 0.85rem;
  font-style: italic;
}

.location .info-card .info-content .hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
}

.location .info-card .info-content .hours-grid .day {
  font-weight: 500;
}

.location .info-card .info-content .hours-grid .time {
  text-align: right;
}

.location .cta-wrapper {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}

.location .cta-wrapper a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.location .cta-wrapper a.btn-get-directions {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.location .cta-wrapper a.btn-get-directions:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  transform: translateY(-2px);
}

.location .cta-wrapper a.btn-contact {
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.location .cta-wrapper a.btn-contact:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .location .info-container {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .location .cta-wrapper {
    flex-direction: column;
  }

  .location .hours-grid {
    grid-template-columns: 1fr !important;
  }

  .location .hours-grid .time {
    text-align: left !important;
    margin-bottom: 0.5rem;
  }

  .location .map-container {
    min-height: 300px;
  }
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .seasonal-hero {
  text-align: center;
  position: relative;
  padding: 3rem 0;
}

.events .seasonal-hero .seasonal-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b35 20%));
  color: var(--contrast-color);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.events .seasonal-hero h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.events .seasonal-hero p {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.events .seasonal-hero .festival-dates {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
}

.events .seasonal-hero .festival-dates i {
  font-size: 1.2rem;
}

.events .feature-card {
  background-color: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.events .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.events .feature-card .feature-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

.events .feature-card .feature-visual .feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--surface-color);
  color: var(--accent-color);
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.events .feature-card .feature-visual .feature-badge i {
  font-size: 1rem;
}

.events .feature-card .feature-visual:hover img {
  transform: scale(1.1);
}

.events .feature-card .feature-content {
  padding: 2.5rem;
}

.events .feature-card .feature-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.events .feature-card .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.events .feature-card .feature-content .feature-highlights {
  margin-bottom: 2rem;
}

.events .feature-card .feature-content .feature-highlights .highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.events .feature-card .feature-content .feature-highlights .highlight-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.events .feature-card .feature-content .feature-highlights .highlight-item span {
  font-weight: 500;
}

.events .feature-card .feature-content .feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.events .feature-card .feature-content .feature-link:hover {
  gap: 1.2rem;
  color: color-mix(in srgb, var(--accent-color), #000 20%);
}

.events .feature-card .feature-content .feature-link i {
  transition: transform 0.3s ease;
}

.events .feature-card .feature-content .feature-link:hover i {
  transform: translateX(5px);
}

.events .awards-section {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 30px;
  padding: 4rem 3rem;
  margin: 5rem 0;
}

.events .awards-section .awards-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.events .awards-section .awards-content p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.events .awards-section .awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.events .awards-section .awards-grid .award-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.events .awards-section .awards-grid .award-item:hover {
  transform: translateY(-5px);
}

.events .awards-section .awards-grid .award-item .award-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.events .awards-section .awards-grid .award-item .award-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.events .awards-section .awards-grid .award-item .award-details h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.events .awards-section .awards-grid .award-item .award-details span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.events .community-section {
  margin: 5rem 0;
}

.events .community-section .community-card,
.events .community-section .sustainability-card {
  background-color: var(--surface-color);
  border-radius: 25px;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.events .community-section .community-header,
.events .community-section .sustainability-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.events .community-section .community-header .community-icon,
.events .community-section .community-header .sustainability-icon,
.events .community-section .sustainability-header .community-icon,
.events .community-section .sustainability-header .sustainability-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #28a745 20%));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.events .community-section .community-header .community-icon i,
.events .community-section .community-header .sustainability-icon i,
.events .community-section .sustainability-header .community-icon i,
.events .community-section .sustainability-header .sustainability-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.events .community-section .community-header h3,
.events .community-section .sustainability-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.events .community-section .community-header p,
.events .community-section .sustainability-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.events .community-section .community-stats .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.events .community-section .community-stats .stat-row:last-child {
  margin-bottom: 0;
}

.events .community-section .community-stats .stat-row .stat-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%), color-mix(in srgb, var(--accent-color), transparent 90%));
  border-radius: 15px;
}

.events .community-section .community-stats .stat-row .stat-item .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.events .community-section .community-stats .stat-row .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 1.3;
}

.events .community-section .sustainability-features .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.events .community-section .sustainability-features .feature-item:last-child {
  border-bottom: none;
}

.events .community-section .sustainability-features .feature-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.events .community-section .sustainability-features .feature-item span {
  font-weight: 500;
}

@media (max-width: 992px) {
  .events .seasonal-hero h2 {
    font-size: 2.8rem;
  }

  .events .awards-section {
    padding: 3rem 2rem;
  }

  .events .awards-section .awards-grid {
    grid-template-columns: 1fr;
  }

  .events .community-section .community-stats .stat-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .events .seasonal-hero h2 {
    font-size: 2.2rem;
  }

  .events .seasonal-hero p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# 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;
  }
}

.gallery .swiper-wrapper {
  transition-timing-function: linear;
}

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

/*--------------------------------------------------------------
# Menu Modal
--------------------------------------------------------------*/
.modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

#menuModal .modal-content {
  background-color: color-mix(in srgb, var(--surface-color), transparent 20%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--soft-border);
  border-radius: 0;
  color: var(--default-color);
}

#menuModal .modal-header {
  border-bottom: 1px solid var(--soft-border);
  padding: 1.5rem 2rem;
}

#menuModal .modal-header .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
  background-size: 0.8em;
}

#menuModal .modal-title {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

#menuModal .modal-body {
  padding: 0;
  overflow-x: hidden;
}

/* Menu Filter Buttons */
#menuModal .filter-btn-group .btn,
#integrated-menu-container .filter-btn-group .btn {
  border: 1px solid var(--soft-border);
  color: var(--default-color);
  background: transparent;
  padding: 8px 20px;
  transition: all 0.3s;
  font-weight: 600;
}

#menuModal .filter-btn-group .btn:hover,
#menuModal .filter-btn-group .btn.active,
#integrated-menu-container .filter-btn-group .btn:hover,
#integrated-menu-container .filter-btn-group .btn.active {
  color: #fff;
}

#menuModal .filter-btn-group .btn[data-filter="all"].active,
#menuModal .filter-btn-group .btn[data-filter="all"]:hover,
#integrated-menu-container .filter-btn-group .btn[data-filter="all"].active,
#integrated-menu-container .filter-btn-group .btn[data-filter="all"]:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ff6b35 50%, #ff4500 100%);
  border-color: #ff8c00;
  color: var(--contrast-color);
}

#menuModal .filter-btn-group .btn[data-filter="veg"].active,
#menuModal .filter-btn-group .btn[data-filter="veg"]:hover,
#integrated-menu-container .filter-btn-group .btn[data-filter="veg"].active,
#integrated-menu-container .filter-btn-group .btn[data-filter="veg"]:hover {
  background: linear-gradient(135deg, #198754 0%, #20c997 50%, #51cf66 100%);
  border-color: #198754;
  color: #fff;
}

#menuModal .filter-btn-group .btn[data-filter="non-veg"].active,
#menuModal .filter-btn-group .btn[data-filter="non-veg"]:hover,
#integrated-menu-container .filter-btn-group .btn[data-filter="non-veg"].active,
#integrated-menu-container .filter-btn-group .btn[data-filter="non-veg"]:hover {
  background: linear-gradient(135deg, #dc3545 0%, #e74c3c 50%, #c0392b 100%);
  border-color: #dc3545;
  color: #fff;
}

#menuModal .filter-btn-group .btn[data-filter="drink"].active,
#menuModal .filter-btn-group .btn[data-filter="drink"]:hover,
#integrated-menu-container .filter-btn-group .btn[data-filter="drink"].active,
#integrated-menu-container .filter-btn-group .btn[data-filter="drink"]:hover {
  background: linear-gradient(135deg, #6f42c1 0%, #9c27b0 50%, #ba68c8 100%);
  border-color: #6f42c1;
  color: #fff;
}

/* Dessert Filter Theme */
#menuModal .filter-btn-group .btn[data-filter="dessert"].active,
#menuModal .filter-btn-group .btn[data-filter="dessert"]:hover,
#integrated-menu-container .filter-btn-group .btn[data-filter="dessert"].active,
#integrated-menu-container .filter-btn-group .btn[data-filter="dessert"]:hover {
  background: linear-gradient(135deg, #ff6fb1 0%, #ff4081 50%, #ff1744 100%);
  border-color: #ff4081;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 64, 129, 0.18);
  transform: translateY(-2px);
}

/* Desktop Sidebar */
#menu-nav {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--soft-border);
  height: 100%;
}

#menu-nav .nav-link {
  color: var(--default-color);
  padding: 12px 20px;
  border-left: 3px solid transparent;
  transition: all 0.3s;
  border-radius: 0 5px 5px 0;
  font-weight: 500;
}

#menu-nav .nav-link:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

#menu-nav .nav-link.active {
  color: var(--accent-color);
  font-weight: 700;
  border-left-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

/* Menu Grid View (Desktop Initial State) */
@media (min-width: 992px) {
  .menu-grid-view #menu-sidebar-col {
    display: none !important;
  }

  .menu-grid-view #menu-content-col {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .menu-grid-view #menu-accordion {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px 0;
  }

  .menu-grid-view .accordion-item {
    border: 1px solid var(--soft-border);
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    position: relative;
    overflow: hidden;
    z-index: 0;
  }

  .menu-grid-view .accordion-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.1) 0px,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px,
      transparent 10px
    );
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
    animation: stripe-slide 20s linear infinite;
  }

  /* Category Card Colors */
  .menu-grid-view .accordion-item:nth-child(6n+1) {
    background: linear-gradient(135deg, #37474f 0%, #102027 100%); /* Dark Slate */
  }
  .menu-grid-view .accordion-item:nth-child(6n+2) {
    background: linear-gradient(135deg, #880e4f 0%, #35031d 100%); /* Dark Pink/Red */
  }
  .menu-grid-view .accordion-item:nth-child(6n+3) {
    background: linear-gradient(135deg, #1b5e20 0%, #08240a 100%); /* Dark Green */
  }
  .menu-grid-view .accordion-item:nth-child(6n+4) {
    background: linear-gradient(135deg, #0d47a1 0%, #041633 100%); /* Dark Blue */
  }
  .menu-grid-view .accordion-item:nth-child(6n+5) {
    background: linear-gradient(135deg, #bf360c 0%, #421304 100%); /* Dark Orange */
  }
  .menu-grid-view .accordion-item:nth-child(6n+6) {
    background: linear-gradient(135deg, #4a148c 0%, #1a0533 100%); /* Dark Purple */
  }

  .menu-grid-view .accordion-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, color-mix(in srgb, var(--accent-color), transparent 90%), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-grid-view .accordion-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    border-color: var(--accent-color);
  }

  .menu-grid-view .accordion-item:hover::before {
    opacity: 1;
  }

  .menu-grid-view .accordion-header {
    width: 100%;
    margin: 0;
    z-index: 1;
  }

  .menu-grid-view .accordion-button {
    display: flex !important; /* Override the hide on desktop */
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.4rem;
    font-family: var(--heading-font);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    color: var(--heading-color);
    pointer-events: none; /* Let the item click handle it */
    padding: 2rem;
    height: 100%;
    width: 100%;
    box-shadow: none;
    border-bottom: none;
    white-space: normal;
    line-height: 1.4;
    flex-direction: column;
    gap: 15px;
  }

  .menu-grid-view .accordion-button .category-icon {
    font-size: 2.5rem;
    margin-right: 0 !important;
    opacity: 0.9;
  }

  .menu-grid-view .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--heading-color);
    box-shadow: none;
  }

  .menu-grid-view .accordion-button::after {
    display: none;
  }

  .menu-grid-view .accordion-collapse {
    display: none;
  }

  @keyframes stripe-slide {
    0% { background-position: 0 0; }
    100% { background-position: 283px 0; }
  }
}

/* Sidebar Slide Animation */
@keyframes slideInLeft {
  from { transform: translateX(-20px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.menu-detail-view #menu-sidebar-col {
  animation: slideInLeft 0.4s ease forwards;
}

/* Menu Detail View - Split Pane with Independent Scrolling */
@media (min-width: 992px) {
  .menu-detail-view {
    height: 80vh; /* Fixed height relative to viewport */
    min-height: 500px;
    overflow: hidden; /* Prevent container scroll */
    border: 1px solid var(--soft-border);
    border-radius: 15px;
    background-color: var(--surface-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .menu-detail-view #menu-sidebar-col {
    height: 100%;
    overflow-y: auto;
    border-right: 1px solid var(--soft-border);
    padding-bottom: 20px;
    background-color: color-mix(in srgb, var(--surface-color), black 2%);
  }

  .menu-detail-view #menu-content-col {
    height: 100%;
    overflow-y: auto;
    padding-bottom: 20px;
    scroll-behavior: smooth;
  }

  /* Custom Scrollbars for Menu */
  .menu-detail-view #menu-sidebar-col::-webkit-scrollbar,
  .menu-detail-view #menu-content-col::-webkit-scrollbar {
    width: 6px;
  }
  .menu-detail-view #menu-sidebar-col::-webkit-scrollbar-track,
  .menu-detail-view #menu-content-col::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
  }
  .menu-detail-view #menu-sidebar-col::-webkit-scrollbar-thumb,
  .menu-detail-view #menu-content-col::-webkit-scrollbar-thumb {
    background-color: var(--accent-color);
    border-radius: 10px;
  }

  /* Adjust nav in sidebar */
  .menu-detail-view #menu-nav {
    border-right: none;
    height: auto;
  }
}

/* Desktop: Hide accordion buttons to create sidebar-pane effect */
@media (min-width: 992px) {
  #menu-accordion:not(.menu-grid-view) .accordion-button {
    display: none;
  }
}

/* Accordion Styles */
#menu-accordion .accordion-item {
  background-color: transparent;
  border: none;
}

#menu-accordion .accordion-header {
  margin-bottom: 0;
}

#menu-accordion .accordion-button {
  background-color: transparent;
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  box-shadow: none;
  border-bottom: 1px solid var(--soft-border);
}

#menu-accordion .accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

#menu-accordion .accordion-button::after {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

#menu-accordion .accordion-body {
  padding: 1rem 2rem 2rem;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px dashed var(--soft-border);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.menu-item:hover {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

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

.menu-item .menu-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  margin-right: 20px;
  border: 2px solid var(--accent-color);
  flex-shrink: 0;
}

.menu-item .menu-content {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: 
    "title price"
    "badges price"
    "desc desc";
  align-items: start;
}

.menu-item h5 {
  grid-area: title;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.menu-item .menu-badges {
  grid-area: badges;
}

.menu-item .price {
  grid-area: price;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-color);
  float: none;
  margin-left: 15px;
  margin-bottom: 0;
  line-height: 1.2;
}

.menu-item .description {
  grid-area: desc;
  font-size: 1.1rem;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 576px) {
  .menu-item .menu-content {
    grid-template-columns: 1fr;
    grid-template-areas: 
      "title"
      "badges"
      "price"
      "desc";
    overflow-wrap: break-word;
  }

  .menu-item .price {
    margin-left: 0;
    margin-top: 5px;
    justify-self: end;
    text-align: right;
  }
}

/* Mobile FAB */
.mobile-menu-fab {
  position: fixed;
  bottom: 80px; /* Above scroll-top */
  right: 15px;
  width: 56px;
  height: 56px;
  z-index: 9998;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: none;
}

/* Mobile Floating Action Menu inside Modal */
.mobile-fab-container {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1020;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.fab-main-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.fab-main-btn.active {
  transform: rotate(90deg);
  background-color: var(--surface-color);
  color: var(--default-color);
  border-color: var(--soft-border);
}

.fab-options {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}

.fab-options.show {
  display: flex;
  animation: slideUpFade 0.3s ease forwards;
}

.fab-option {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid var(--soft-border);
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  text-align: left;
  transition: all 0.2s;
}

.fab-option:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.mobile-menu-fab:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
  background: var(--surface-color);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--soft-border);
  height: 100%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.contact .contact-info-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-color);
}

.contact .contact-info-box .icon-box {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 60%);
  transition: transform 0.3s ease;
}

.contact .contact-info-box .icon-box i {
  font-size: 28px;
}

.contact .contact-info-box:hover .icon-box {
  transform: scale(1.1) rotate(10deg);
}

.contact .contact-info-box .info-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.contact .contact-info-box .info-content p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin-bottom: 0;
}

.contact .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact .contact-info-box .info-content a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

.contact .contact-info-box .info-content a:hover {
  color: var(--accent-color);
}

.contact .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact .contact-form {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
}

.contact .contact-form:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Modern Contact Form Styles */
.modern-form {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  border: 1px solid var(--soft-border);
}

.modern-form .form-floating > .form-control,
.modern-form .form-select {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--default-color);
  border-radius: 0.5rem;
}

.modern-form .form-floating > .form-control:focus,
.modern-form .form-select:focus {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.modern-form .form-floating > label {
  color: var(--muted-text);
  padding-left: 1rem;
}

.modern-form .form-floating > .form-control:focus ~ label,
.modern-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
  color: var(--accent-color);
  opacity: 0.9;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.modern-form .modern-input-group .country-select {
  flex: 0 0 110px;
  width: 11 0px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--default-color);
  height: 58px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.modern-form .modern-input-group .country-select option {
  background-color: var(--surface-color);
  color: var(--default-color);
}

.modern-form .modern-input-group .form-floating .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}

.contact .contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--default-color);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact .contact-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  outline: none;
}

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

.contact .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .loading,
.contact .contact-form-wrapper .error-message,
.contact .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact .form-container-overlap {
    margin-top: -120px;
  }

  .contact .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-box {
    margin-bottom: 20px;
  }

  .contact .form-container-overlap {
    margin-top: -100px;
  }

  .contact .contact-form-wrapper {
    padding: 25px;
  }

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

  .contact .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact .form-container-overlap {
    margin-top: -80px;
  }

  .contact .contact-form-wrapper {
    padding: 20px;
  }

  .contact .btn-submit {
    width: 100%;
  }

  .contact .map-section {
    height: 300px;
  }
}

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

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

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

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

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

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 120px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.error-404 .error-number {
  font-size: clamp(120px, 20vw, 280px);
  font-weight: 300;
  color: color-mix(in srgb, var(--heading-color), transparent 15%);
  line-height: 0.8;
  margin-bottom: 40px;
  font-family: var(--heading-font);
  letter-spacing: -0.02em;
}

.error-404 .error-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.error-404 .error-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-404 .error-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 80px;
}

@media (min-width: 576px) {
  .error-404 .error-actions {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.error-404 .error-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.error-404 .error-actions .btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-primary i {
  font-size: 18px;
}

.error-404 .error-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  color: var(--heading-color);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.error-404 .error-actions .btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.error-404 .error-actions .btn-secondary i {
  font-size: 18px;
}

.error-404 .helpful-links {
  text-align: center;
}

.error-404 .helpful-links h3 {
  font-size: 24px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 40px;
}

.error-404 .helpful-links .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.error-404 .helpful-links .link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 20px;
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  color: var(--default-color);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.error-404 .helpful-links .link-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--accent-color);
  border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .helpful-links .link-item i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.error-404 .helpful-links .link-item span {
  font-size: 16px;
  font-weight: 400;
}

.error-404 .helpful-links .link-item:hover i {
  transform: scale(1.1);
}

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

  .error-404 .error-actions {
    margin-bottom: 60px;
  }

  .error-404 .helpful-links .links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .error-404 .helpful-links .links-grid {
    grid-template-columns: 1fr;
  }
}

.contact .contact-form .btn-whatsapp {
  background: linear-gradient(45deg, #25D366, #128C7E) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact .contact-form .btn-whatsapp:hover {
  background: linear-gradient(45deg, #128C7E, #075E54) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.contact .contact-form .btn-email {
  background: linear-gradient(45deg, #EA4335, #C5221F) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact .contact-form .btn-email:hover {
  background: linear-gradient(45deg, #C5221F, #B00D00) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(234, 67, 53, 0.5);
}

.contact .contact-form .btn-clear {
  background: #f8f9fa !important;
  border: 2px solid #e9ecef !important;
  color: #6c757d !important;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact .contact-form .btn-clear:hover {
  background: #e9ecef !important;
  color: #495057 !important;
  border-color: #dee2e6 !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact .btn-get-directions {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
  color: var(--contrast-color);
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 50%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: none;
}

.contact .btn-get-directions:hover {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), black 10%), color-mix(in srgb, var(--accent-color), black 30%));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 30%);
  color: var(--contrast-color);
}

.contact .contact-form .btn i {
  transition: transform 0.3s ease;
}

.contact .contact-form .btn:hover i {
  transform: scale(1.2);
}

/* Toast Customization */
.toast {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid var(--accent-color);
}
.toast-header {
  background-color: color-mix(in srgb, var(--surface-color), white 5%);
  color: var(--heading-color);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}
.toast .btn-close {
  filter: invert(1);
}

.toast-success {
  border-color: var(--bs-success);
}
.toast-success .toast-header {
  color: var(--bs-success);
}
.toast-error {
  border-color: var(--bs-danger);
}
.toast-error .toast-header {
  color: var(--bs-danger);
}

/* Mobile Order Button in Header */
.order-btn-mobile .btn {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: "Baguede Grotesque Sans Serif", sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 15px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: mobile-order-pulse 2s infinite;
}

/* Apply pulse effect to desktop and hero order buttons */
#order,
#nav-order-btn,
.hero .hero-text .hero-actions .mobile-order-toggle {
  animation: mobile-order-pulse 2s infinite;
}

.order-btn-mobile .btn:hover,
.order-btn-mobile .btn:focus {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  color: var(--contrast-color);
}

.order-btn-mobile .dropdown-menu {
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid var(--accent-color);
  padding: 0;
  margin-top: 10px;
  border-radius: 4px;
}

.order-btn-mobile .dropdown-item {
  color: var(--nav-dropdown-color);
  padding: 10px 20px;
  font-size: 14px;
}

.order-btn-mobile .dropdown-item:hover,
.order-btn-mobile .dropdown-item:focus {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 575px) {
  .order-btn-mobile .btn {
    font-size: 11px;
    padding: 4px 8px;
  }
  .order-btn-mobile {
    margin-right: 5px !important;
  }
}

@keyframes mobile-order-pulse {
  0% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color), transparent 30%);
  }
  70% {
    box-shadow: 0 0 0 10px color-mix(in srgb, var(--accent-color), transparent 100%);
  }
  100% {
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent-color), transparent 100%);
  }
}

/* Mobile Order Menu Overlay */
.mobile-order-menu {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.mobile-order-active .mobile-order-menu {
  display: flex;
}

.mobile-order-menu a {
  font-family: "Baguede Grotesque Sans Serif", sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
}

.mobile-order-menu a:hover {
  color: var(--accent-color);
}

.mobile-order-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.mobile-order-active .mobile-order-menu ul li {
  opacity: 0;
  animation: slideInMobileItem 0.4s ease forwards;
}

.mobile-order-active .mobile-order-menu ul li:nth-child(1) { animation-delay: 0.1s; }
.mobile-order-active .mobile-order-menu ul li:nth-child(2) { animation-delay: 0.2s; }

.mobile-order-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.delivery-icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  object-fit: contain;
}

/* Integrated Menu Container Styling */
#integrated-menu-container {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid var(--soft-border);
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  #integrated-menu-container {
    padding: 30px;
  }
}

/* Mobile Menu Sticky Header & Styling */
@media (max-width: 991px) {
  #menu-accordion .accordion-item {
    margin-bottom: 15px;
    border: 1px solid var(--soft-border);
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--surface-color);
  }

  #menu-accordion .accordion-header {
    margin: 0;
  }

  #menu-accordion .accordion-button {
    background-color: var(--surface-color);
    color: var(--heading-color);
    border-bottom: none;
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
  }

  #menu-accordion .accordion-button:not(.collapsed) {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  
  #menu-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0);
  }

  #integrated-menu-container {
    padding: 0;
    background-color: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #menu-accordion .accordion-body {
    padding: 15px;
    background-color: color-mix(in srgb, var(--surface-color), black 20%);
  }

  .menu-item .price {
    font-size: 1.25rem;
  }
}

/* Menu Item Badges */
.menu-item .menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.badge-item {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.badge-veg { background-color: #198754; } /* Green */
.badge-non-veg { background-color: #dc3545; } /* Red */
.badge-egg { 
  background-color: #ffc107; /* Yellow */
  color: #000; 
}
.badge-seafood { 
  background-color: #0dcaf0; /* Cyan */
  color: #000; 
}
.badge-drink { 
  background-color: #6f42c1; /* Purple */
}

/* Modal Navigation Buttons */
.modal-nav-btn {
  position: absolute;
  top: 40%; /* Align with image roughly */
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--soft-border);
  color: var(--default-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-nav-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.prev-btn { left: 15px; }
.next-btn { right: 15px; }