/**
* Template Name: DBS
* Updated: Jun 15 2023 with Bootstrap v5.3.0
* Author: BootstrapMade.com
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "montserrat", sans-serif;
  background: #ffff;
  color: #fff;
}

/* Lightweight refresh/loading screen */
.dbs-loader {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  place-items: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
  transition: opacity .38s ease, visibility .38s ease;
  animation: dbs-loader-failsafe .4s ease 2.5s forwards;
}
.dbs-loader.is-loaded { opacity: 0; visibility: hidden; pointer-events: none; }
.dbs-loader-content { display: grid; justify-items: center; width: min(240px,70vw); }
.dbs-loader-content img { width: 130px; height: auto; object-fit: contain; animation: dbs-loader-logo .65s ease both; }
.dbs-loader-track { width: 150px; height: 3px; margin-top: 18px; overflow: hidden; border-radius: 4px; background: #eee7dc; }
.dbs-loader-track span { display: block; width: 45%; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#cda45e,#8d0801); animation: dbs-loader-progress .8s ease-in-out infinite; }
.dbs-loader-content small { margin-top: 10px; color: #948a7e; font-size: 10px; letter-spacing: .7px; }
@keyframes dbs-loader-logo { from { opacity: 0; transform: translateY(6px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes dbs-loader-progress { from { transform: translateX(-110%); } to { transform: translateX(235%); } }
@keyframes dbs-loader-failsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@media (prefers-reduced-motion: reduce) {
  .dbs-loader-content img, .dbs-loader-track span { animation: none; }
  .dbs-loader { transition-duration: .15s; }
}

/* Defer layout and paint work for sections below the initial viewport. */
main > section:not(#hero), footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 700px;
}

a {
  color: #cda45e;
  text-decoration: none;
}

a:hover {
  color: #d9ba85;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "montserrat", serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #8D0801;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  background: url("../img/bunga_dbs.png");	
  border-radius: 50%;
  width: 80px;
  height: 69px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/* Content must remain visible even when optional animation scripts are slow or unavailable. */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 30px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid #cda45e;
  background: #cda45e;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #b88c43;
  border-color: #b88c43;
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

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

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  z-index: 996;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  font-style: normal;
  color: #d9ba85;
}

#topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

#topbar .languages ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cda45e;
}

#topbar .languages ul a {
  color: white;
}

#topbar .languages ul li+li {
  padding-left: 10px;
}

#topbar .languages ul li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.5);
  content: "/";
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255);
  border-bottom: 1px solid rgba(205, 164, 94, 0.18);
  box-shadow: 0 3px 16px rgba(35, 29, 22, 0.04);
  transition: top 0.35s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  z-index: 997;
  padding: 15px 0;
  top: 40px;
}

#header.header-scrolled {
  top: 0;
  background: rgba(255, 255, 255);
  border-bottom: 1px solid rgba(205, 164, 94, 0.18);
  box-shadow: 0 5px 22px rgba(35, 29, 22, 0.08);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 57px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
  margin:  0 0 15px;
  border: 2px solid #cda45e;
  color: #cda45e;
  border-radius: 50px;
  padding: 8px 40px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: 0.3s;
}

.book-a-table-btn:hover {
  background: #cda45e;
  color: #fff;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  color: #cda45e;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
}

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

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #d9ba85;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #444444;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #cda45e;
}

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

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #cda45e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1a1814;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #cda45e;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #cda45e;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/banner.webp") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 110px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 98px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #cda45e;
}

#hero h2 {
  color: #eee;
  margin-bottom: 10px 0 0 0;
  font-size: 22px;
}

#hero .btns {
  margin-top: 30px;
}

#hero .btn-menu,
#hero .btn-book {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.3s;
  line-height: 1;
  color: white;
  border: 2px solid #cda45e;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
  background: #cda45e;
  color: #fff;
}

#hero .btn-book {
  margin-left: 15px;
}

#hero .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#cda45e 50%, rgba(205, 164, 94, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

#hero .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(205, 164, 94, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
  border-left: 15px solid #cda45e;
  transform: scale(20);
}

#hero .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: auto;
  }

  #hero .container {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-image: url("../img/back_4.png");
  background-size:cover;
  position: relative;
  padding: 80px 0;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(210, 148, 50);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: "montserrat", serif;
  color: #cda45e;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #1d1b16;
  margin-top: 110px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 98px;
  }
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #37332a;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: url("../img/back-1.png") center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
}

.about:before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.about .about-img {
  position: relative;
  transition: 0.5s;
}

.about .about-img img {
  max-width: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.about .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: "";
  border-left: 5px solid #cda45e;
  border-top: 5px solid #cda45e;
  transition: 0.5s;
}

.about .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: "";
  border-right: 5px solid #cda45e;
  border-bottom: 5px solid #cda45e;
  transition: 0.5s;
}

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

.about .about-img:hover::before {
  left: 10px;
  top: 10px;
}

.about .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

.about .content {
  position: relative;
}

.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

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

@media (min-width: 1024px) {
  .about {
    background-attachment: fixed;
  }
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .box {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 390px;
  padding: 50px 30px;
  border: 1px solid rgba(205, 164, 94, 0.16);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(31, 27, 20, 0.13);
  transition: all ease-in-out 0.3s;
  background: #fff;
  background-image: url("../img/back-3.png");	
}

.why-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #cda45e;
}

.why-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #cda45e;
}

.why-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.why-us .box:hover {
  background: #cda45e;
  padding: 50px 30px;
  transform: translateY(-6px);
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991px) {
  .why-us .box {
    min-height: 320px;
  }
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
  color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
  padding: 0;
  margin: 0 auto 0 auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}

.menu #menu-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px 10px 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
  color: #cda45e;
}

.menu #menu-flters li:last-child {
  margin-right: 0;
}

.menu .menu-item {
  margin-top: 50px;
}

.menu .menu-img {
  width: 70px;
  border-radius: 50%;
  float: left;
  border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
  margin-left: 85px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.menu .menu-content::after {
  content: "......................................................................" "...................................................................." "....................................................................";
  position: absolute;
  left: 20px;
  right: 0;
  top: -4px;
  z-index: 1;
  color: #bab3a6;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
  padding-right: 10px;
  background: #1a1814;
  position: relative;
  z-index: 3;
  font-weight: 700;
  color: white;
  transition: 0.3s;
}

.menu .menu-content a:hover {
  color: #cda45e;
}

.menu .menu-content span {
  background: #1a1814;
  position: relative;
  z-index: 3;
  padding: 0 10px;
  font-weight: 600;
  color: #cda45e;
}

.menu .menu-ingredients {
  margin-left: 85px;
  font-style: italic;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
  overflow: hidden;
}

.specials .nav-tabs {
  width: 100%;
  height: 100%;
  align-self: stretch;
  border: 0;
  border-right: 2px solid #cda45e;
}

.specials .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: #cda45e;
  border-radius: 0;
  border-right: 0;
  font-weight: 600;
  font-size: 15px;
}

.specials .nav-link:hover {
  color: #cda45e;
}

.specials .nav-link.active {
  color: #fff;
  background: #cda45e;
  border-color: #cda45e;
}

.specials .nav-link:hover {
  border-color: #cda45e;
}

.specials .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

/* Keep the business pillar section at one consistent height when switching tabs. */
.specials .tab-content {
  display: grid;
}

.specials .tab-content > .tab-pane {
  grid-area: 1 / 1;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.specials .tab-content > .tab-pane.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.specials .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #D29432;
}

.specials .details p {
  color: #D29432;
}

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

@media (max-width: 992px) {
  .specials .nav-link {
    border: 0;
    padding: 15px;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
  background: url(../img/back-2.png) center center no-repeat;
  background-size: cover;
  position: relative;
}

.events::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.events .section-title h2 {
  color: #fff;
}

.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #fff;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 26px;
  color: #cda45e;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #cda45e;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cda45e;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

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

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
  width: 100%;
}

.book-a-table .php-email-form .form-group {
  padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .error-message br+br {
  margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #0c0b09;
  border-color: #625b4b;
  color: white;
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form textarea::placeholder {
  color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: #cda45e;
}

.book-a-table .php-email-form input {
  height: 44px;
}

.book-a-table .php-email-form textarea {
  padding: 10px 12px;
}

.book-a-table .php-email-form button[type=submit] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #d3af71;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: white;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #d3af71;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: #26231d;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cda45e;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid #454035;
  border-bottom: 3px solid #454035;
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

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

/*--------------------------------------------------------------
# Chefs
--------------------------------------------------------------*/
.chefs .member {
  text-align: center;
  margin-bottom: 20px;
  background: #343a40;
  position: relative;
  overflow: hidden;
}

.chefs .member .member-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

.chefs .member .member-info-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  transition: bottom 0.4s;
}

.chefs .member .member-info-content h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

.chefs .member .member-info-content span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

.chefs .member .social {
  position: absolute;
  left: 0;
  bottom: -38px;
  right: 0;
  height: 48px;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
}

.chefs .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
}

.chefs .member .social a:hover {
  color: #cda45e;
}

.chefs .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.chefs .member:hover .member-info {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 212, 255, 0) 100%);
  opacity: 1;
  transition: 0.4s;
}

.chefs .member:hover .member-info-content {
  bottom: 60px;
  transition: bottom 0.4s;
}

.chefs .member:hover .social {
  bottom: 0;
  transition: bottom ease-in-out 0.4s;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
}

.contact .info i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #cda45e;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  font-family: "montserrat", sans-serif;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #bab3a6;
}

.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #cda45e
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #cda45e;
  border-top-color: #1a1814;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  background: #ffff;
  border-color: #625b4b;
  color: black;
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
  color: #a49b89;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #a49b89;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #cda45e;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #cda45e;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #d3af71;
}

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

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #cda45e;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #8D0801;
  border-top: 0px;
  border-bottom: 0px;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 300;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "montserrat", serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  margin-right: 8px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

#footer .footer-top .social-links a img {
  display: block;
  width: 44px;
  height: 44px;
}

#footer .footer-top .social-links a:hover {
  background: transparent;
  text-decoration: none;
  transform: translateY(-3px) scale(1.08);
  filter: brightness(1.08);
}

.captcha-card {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  padding: 16px 18px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.captcha-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #25a244;
  color: #fff;
  font-size: 27px;
}

.captcha-content {
  flex: 1;
}

.captcha-content label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
}

.captcha-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-question {
  min-width: 92px;
  color: #222;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
}

.captcha-controls .form-control {
  width: 125px;
  min-height: 42px;
  margin: 0;
}

.captcha-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #cda45e;
  color: #fff;
  font-size: 20px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.captcha-refresh:hover {
  background: #b88c42;
  transform: rotate(30deg);
}

.captcha-refresh:disabled {
  opacity: 0.65;
}

.captcha-help,
.captcha-error {
  display: block;
  margin-top: 6px;
}

.captcha-help {
  color: #777;
}

.captcha-error {
  color: #c62828;
}

@media (max-width: 575px) {
  .captcha-card {
    align-items: flex-start;
  }

  .captcha-controls {
    flex-wrap: wrap;
  }
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #cda45e;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #cda45e;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #28251f;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
  background: #28251f;
  color: white;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #cda45e;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #d3af71;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding-top: 20px;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ffc451;
}

/* Refined contact security panel */
.form-security-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.form-security-row .captcha-card {
  gap: 18px;
  width: min(100%, 650px);
  max-width: none;
  padding: 18px 20px;
  border: 1px solid rgba(205, 164, 94, 0.38);
  border-left: 4px solid #cda45e;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 24px rgba(43, 35, 22, 0.08);
}

.form-security-row .captcha-check {
  flex-basis: 58px;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(145deg, #25b95a, #158b3c);
  font-size: 31px;
  box-shadow: 0 6px 14px rgba(21, 139, 60, 0.22);
}

.captcha-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.captcha-heading label {
  margin: 0;
}

.captcha-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 20px;
  background: #edf8f0;
  color: #17833b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.form-security-row .captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 44px;
  padding: 0 14px;
  border: 1px dashed #cda45e;
  border-radius: 8px;
  background: #fffaf1;
}

.form-security-row .captcha-controls .form-control {
  width: 130px;
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid #d7c29d;
  border-radius: 8px;
}

.form-security-row .captcha-controls .form-control:focus {
  border-color: #cda45e;
  box-shadow: 0 0 0 3px rgba(205, 164, 94, 0.15);
}

.form-security-row .captcha-refresh {
  width: 44px;
  height: 44px;
  border: 1px solid #dcc08f;
  border-radius: 8px;
  background: #fffaf1;
  color: #b3863d;
}

.form-security-row .captcha-refresh:hover {
  background: #cda45e;
  color: #fff;
}

.form-security-row .captcha-help {
  font-size: 12px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 210px;
  height: 58px;
  padding: 0 28px;
  border: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, #d8ae62, #bb8837);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(187, 136, 55, 0.23);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 13px 24px rgba(187, 136, 55, 0.32);
}

.contact-submit:active {
  transform: translateY(0);
}

@media (max-width: 991px) {
  .form-security-row {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-submit {
    align-self: center;
  }
}

@media (max-width: 575px) {
  .form-security-row .captcha-card {
    padding: 16px;
  }

  .captcha-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .form-security-row .captcha-controls {
    flex-wrap: wrap;
  }

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

/* Comprehensive responsive layout */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe {
  max-width: 100%;
}

.specials .details img,
.events img,
.why-us img,
#partner img {
  height: auto;
}

@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 70px 0;
  }

  .specials .tab-pane img {
    display: block;
    width: min(100%, 420px) !important;
    margin: 0 auto 24px;
  }

  .why-us .box {
    min-height: 330px;
  }

  .events .event-item img,
  #partner img {
    width: min(100%, 420px) !important;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  section {
    padding: 54px 0;
    scroll-margin-top: 72px;
  }

  .container,
  .container-fluid {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  #topbar {
    height: 32px;
    font-size: 12px;
  }

  #topbar .contact-info {
    width: 100%;
    justify-content: center;
  }

  #topbar .contact-info i + i {
    display: none !important;
  }

  #header {
    top: 32px;
    height: 64px;
    padding: 8px 0;
  }

  #header.header-scrolled {
    top: 0;
  }

  #header .logo img {
    max-height: 44px;
    width: auto;
  }

  .mobile-nav-toggle {
    font-size: 30px;
  }

  .navbar-mobile {
    top: 0;
    padding: 70px 15px 15px;
  }

  .navbar-mobile ul {
    inset: 70px 15px 15px;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }

  #hero {
    min-height: 620px;
    height: 100svh;
    padding-top: 96px;
    background-position: center center;
  }

  #hero .container {
    padding-top: 30px;
  }

  #hero h1 {
    font-size: clamp(32px, 10vw, 44px);
    line-height: 1.15;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 1.5;
  }

  .section-title {
    padding-bottom: 28px;
  }

  .section-title h2 {
    font-size: 13px;
  }

  .section-title p {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.2;
  }

  .section-title p img {
    flex: 0 0 34px;
    width: 34px !important;
    height: 34px;
    object-fit: contain;
  }

  .about .content {
    padding-left: 0 !important;
  }

  .about .content h3 {
    font-size: 23px;
  }

  .about .content p,
  .about .content li {
    font-size: 15px;
    line-height: 1.7;
  }

  .specials .nav-tabs {
    display: flex;
    flex-direction: row !important;
    gap: 8px;
    padding-bottom: 5px;
    overflow-x: auto;
    border-right: 0;
    scrollbar-width: thin;
  }

  .specials .nav-tabs .nav-item {
    flex: 0 0 auto;
  }

  .specials .nav-tabs .nav-link {
    padding: 10px 15px;
    border: 1px solid rgba(205, 164, 94, 0.4);
    border-radius: 22px;
    white-space: nowrap;
  }

  .specials .tab-content {
    padding-top: 12px;
  }

  .specials .details {
    padding: 0 4px;
    text-align: center;
  }

  .specials .details h3 {
    margin-top: 10px;
    font-size: 24px;
  }

  .specials .details p {
    font-size: 15px;
    line-height: 1.7;
  }

  .specials .tab-pane img {
    display: block;
    width: min(100%, 340px) !important;
    height: auto;
    margin: 0 auto 22px;
  }

  .why-us .row > [class*="col-"] {
    display: flex;
  }

  .why-us .box {
    min-height: 0;
    padding: 30px 24px;
    border-radius: 12px;
  }

  .why-us .box:hover {
    padding: 30px 24px;
    transform: translateY(-3px);
  }

  .why-us .box h4 {
    margin: 12px 0;
    font-size: 22px;
  }

  .why-us .box p {
    font-size: 15px;
    line-height: 1.65;
  }

  .events .event-item,
  .events .event-item .row {
    text-align: center;
  }

  .events .event-item img {
    display: block;
    width: min(100%, 340px) !important;
    height: auto;
    margin: 0 auto 18px;
  }

  .events .event-item h3 {
    font-size: 23px;
  }

  #partner .row {
    row-gap: 18px;
  }

  #partner [class*="col-"] {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #partner img {
    width: min(72vw, 280px) !important;
    height: auto;
  }

  .contact iframe {
    height: 240px !important;
    border-radius: 10px;
  }

  .contact .row.mt-5 {
    margin-top: 28px !important;
  }

  .php-email-form .form-control {
    min-height: 50px;
    padding: 12px 14px;
    font-size: 16px;
  }

  .php-email-form textarea.form-control {
    min-height: 150px;
  }

  .form-security-row {
    gap: 18px;
  }

  .form-security-row .captcha-card {
    width: 100%;
  }

  #footer .footer-top {
    padding: 42px 0 24px;
  }

  #footer .footer-top .footer-info,
  #footer .footer-top .footer-links {
    text-align: center;
  }

  #footer .footer-top .footer-links ul li {
    justify-content: center;
  }

  #footer .footer-top .social-links {
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  #footer .copyright {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* Latest news */
.news-section { position: relative; overflow: hidden; }
.news-section::before { content: ""; position: absolute; width: 360px; height: 360px; top: -180px; right: -120px; border-radius: 50%; background: rgba(205, 164, 94, .09); }
.news-heading { display: block; max-width: 700px; margin-bottom: 8px; padding-bottom: 18px; }
.news-heading > div { display: block; }
.news-heading h2 { margin-bottom: 8px; }
.news-heading p { display: flex; align-items: center; gap: 10px; margin-bottom: 0; }
.news-heading.section-title p { font-size: clamp(27px, 3vw, 34px); line-height: 1.2; }
.news-heading p img { flex: 0 0 auto; width: 36px; height: 36px; object-fit: contain; }
.news-heading-copy { display: block; max-width: 620px; margin: 11px 0 0 48px; padding: 0; color: #777; font-size: 14px; line-height: 1.65; }
.news-card { display: flex; flex-direction: column; height: 100%; overflow: hidden; border: 1px solid rgba(205, 164, 94, .25); border-radius: 18px; background: #fff; box-shadow: 0 12px 35px rgba(36, 30, 20, .08); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(36, 30, 20, .14); }
.news-card-image { width: 100%; height: 210px; object-fit: contain; padding: 22px; background: linear-gradient(145deg, #fffaf1, #f5efe5); }
.news-card-body { display: flex; flex: 1 1 auto; flex-direction: column; min-height: 295px; padding: 24px; }
.news-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; color: #888; font-size: 12px; }
.news-tag { padding: 6px 10px; border-radius: 20px; background: #fff3dc; color: #9b6b20; font-weight: 700; }
.news-card h3 { margin-bottom: 12px; color: #26221d; font-family: "Poppins", sans-serif; font-size: 20px; line-height: 1.4; }
.news-card-body > p, .news-detail { color: #68635c; font-size: 14px; line-height: 1.75; }
.news-detail { margin: 4px 0 14px; padding: 14px; border-left: 3px solid #cda45e; border-radius: 0 8px 8px 0; background: #fffaf2; }
.news-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid #eee8df; }
.news-read { display: inline-flex; align-items: center; gap: 7px; padding: 0; border: 0; background: transparent; color: #9b6b20; font-weight: 700; }
.news-read i { transition: transform .2s ease; }
.news-read[aria-expanded="true"] i { transform: rotate(90deg); }
.news-social { display: flex; align-items: center; gap: 8px; }
.news-social a, .news-social button { display: inline-grid; place-items: center; width: 34px; height: 34px; padding: 0; border: 1px solid #e6dccd; border-radius: 50%; background: #fff; color: #8d0801; transition: .2s ease; }
.news-social a:hover, .news-social button:hover { border-color: #8d0801; background: #8d0801; color: #fff; }
.news-views { display: inline-flex; align-items: center; gap: 5px; margin-right: 2px; color: #777; font-size: 13px; }
.share-toast { position: fixed; z-index: 9999; right: 24px; bottom: 24px; padding: 12px 18px; border-radius: 10px; background: #29251f; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.24); opacity: 0; transform: translateY(12px); pointer-events: none; transition: .25s ease; }
.share-toast.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 767px) {
  .news-heading { display: block; }
  .news-heading-copy { display: block; margin: 9px 0 0; padding: 0 0 8px; font-size: 13px; }
  .news-heading.section-title p { font-size: 25px; }
  .news-card-image { height: 180px; }
  .news-card-body { min-height: 0; padding: 20px; }
  .share-toast { right: 14px; bottom: 14px; left: 14px; text-align: center; }
}

/* News listing and article pages */
.news-page { padding-top: 128px; background: #faf8f4; color: #39342e; }
.news-page #topbar { border-bottom: 1px solid #eadfce; background: #f7f2e9; }
.news-page #topbar .contact-info i { color: #b6802f; }
.news-page #topbar .contact-info i span { color: #51483f; font-weight: 500; }
.news-page #header { background: rgba(255,255,255,.98); box-shadow: 0 4px 20px rgba(42,32,18,.07); }
.news-page #header .logo img { max-height: 58px; }
.article-header { position: sticky; z-index: 20; top: 0; padding: 12px 0; border-bottom: 1px solid #eee6da; background: rgba(255,255,255,.96); box-shadow: 0 5px 24px rgba(42,32,18,.06); }
.article-nav { display: flex; align-items: center; gap: 24px; }
.article-nav a { color: #665f56; font-weight: 600; }
.article-nav a:hover, .article-nav a.active { color: #a87629; }
.news-hero { padding: 48px 0 42px; background: linear-gradient(125deg, #251f19, #6e1711); color: #fff; }
.news-hero span { color: #e5bd78; font-size: 12px; font-weight: 700; letter-spacing: 3px; }
.news-hero h1 { margin: 8px 0 9px; color: #fff; font-family: "Poppins", sans-serif; font-size: clamp(30px, 4vw, 43px); }
.news-hero p { max-width: 620px; margin: 0; color: rgba(255,255,255,.76); font-size: 17px; }
.news-page .news-section { padding: 46px 0 58px; }
.news-portal { padding: 34px 0 68px; }
.portal-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; color: #8a8177; font-size: 12px; }
.portal-label > span { display: inline-flex; align-items: center; gap: 7px; color: #9b6b20; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; }
.featured-news { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 330px; overflow: hidden; border: 1px solid #eadfce; border-radius: 20px; background: #fff; box-shadow: 0 18px 50px rgba(42,32,18,.08); }
.featured-visual { position: relative; min-width: 0; min-height: 330px; overflow: hidden; background: #eee3d1; }
.featured-slide { position: absolute; inset: 0; display: none; place-items: center; overflow: hidden; }
.featured-slide.active { display: grid; animation: articleSlideFade .45s ease; }
.featured-slide::before { content:""; position:absolute; inset:-24px; background-image:var(--slide-image); background-position:center; background-size:cover; filter:blur(22px); opacity:.34; transform:scale(1.08); }
.featured-slide::after { content:""; position:absolute; inset:0; background:rgba(255,250,242,.28); }
.featured-slide img { position:relative; z-index:1; display:block; width:calc(100% - 52px); height:calc(100% - 74px); object-fit:contain; filter:drop-shadow(0 10px 20px rgba(29,22,13,.13)); }
.featured-visual > span { position: absolute; z-index: 3; top: 18px; left: 18px; padding: 7px 11px; border-radius: 6px; background: #8d0801; color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 1.3px; }
.featured-slider-prev,.featured-slider-next { position:absolute; z-index:3; top:50%; display:grid; place-items:center; width:38px; height:38px; border:1px solid rgba(255,255,255,.75); border-radius:50%; background:rgba(43,36,29,.62); color:#fff; transform:translateY(-50%); cursor:pointer }.featured-slider-prev{left:15px}.featured-slider-next{right:15px}.featured-slider-dots{position:absolute;z-index:3;right:0;bottom:15px;left:0;display:flex;justify-content:center;gap:7px}.featured-slider-dots button{width:8px;height:8px;padding:0;border:0;border-radius:50%;background:rgba(50,42,34,.3);cursor:pointer}.featured-slider-dots button.active{width:23px;border-radius:5px;background:#9b6b20}
.featured-copy { display: flex; flex-direction: column; justify-content: center; padding: 38px; }
.featured-copy h2 { margin: 14px 0 12px; color: #28231e; font-family: "Poppins",sans-serif; font-size: clamp(25px,3vw,35px); line-height: 1.3; }
.featured-copy > p { color: #6d665e; font-size: 15px; line-height: 1.75; }
.featured-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }
.featured-footer > span { color: #8b837a; font-size: 12px; }
.primary-news-link { display: inline-flex; align-items: center; gap: 8px; padding: 11px 17px; border-radius: 8px; background: #8d0801; color: #fff; font-size: 13px; font-weight: 700; }
.primary-news-link:hover { background: #a87629; color: #fff; }
.news-filter { display: grid; grid-template-columns: minmax(260px,1fr) auto; align-items: center; gap: 14px 24px; margin-top: 26px; padding: 16px 18px; border: 1px solid #e9dfd1; border-radius: 14px; background: #fff; box-shadow: 0 8px 26px rgba(42,32,18,.05); }
.news-search-box { position: relative; display: flex; align-items: center; }
.news-search-box > i { position: absolute; left: 14px; color: #a87629; }
.news-search-box input { width: 100%; height: 43px; padding: 0 42px; border: 1px solid #e6dccd; border-radius: 9px; background: #fcfaf7; color: #39342e; font-size: 13px; outline: none; transition: .2s ease; }
.news-search-box input:focus { border-color: #c99a51; background: #fff; box-shadow: 0 0 0 3px rgba(201,154,81,.12); }
.news-search-box button { position: absolute; right: 8px; display: grid; place-items: center; width: 30px; height: 30px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: #7d756c; }
.news-search-box button:hover { background: #f0e8dc; }
.news-categories { display: flex; flex-wrap: wrap; gap: 7px; }
.news-categories button { padding: 8px 13px; border: 1px solid #e8ddce; border-radius: 20px; background: #fff; color: #716960; font-size: 11px; font-weight: 600; transition: .2s ease; }
.news-categories button:hover, .news-categories button.active { border-color: #8d0801; background: #8d0801; color: #fff; }
.news-filter-result { grid-column: 1 / -1; color: #928a81; font-size: 11px; }
.news-filter-result span { color: #8d0801; font-weight: 700; }
.news-empty { padding: 42px 20px; border: 1px dashed #ddcfbb; border-radius: 14px; background: #fffaf3; color: #81786f; text-align: center; }
.news-empty > i { display: block; margin-bottom: 10px; color: #c29a5b; font-size: 30px; }
.news-empty h3 { margin-bottom: 6px; color: #403a34; font-size: 17px; }
.news-empty p { margin: 0; font-size: 12px; }
.news-dashboard { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 32px; margin-top: 48px; align-items: start; }
.portal-section-title { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.portal-section-title span, .popular-header span { color: #b17b28; font-size: 10px; font-weight: 700; letter-spacing: 1.7px; }
.portal-section-title h2, .popular-header h2 { margin: 3px 0 0; color: #28231e; font-family: "Poppins",sans-serif; font-size: 24px; }
.portal-section-title p { max-width: 290px; margin: 0; color: #8a8177; font-size: 12px; }
.latest-list { display: grid; gap: 14px; }
.latest-item { display: grid; grid-template-columns: 185px minmax(0,1fr); overflow: hidden; border: 1px solid #ebe2d6; border-radius: 14px; background: #fff; transition: .22s ease; }
.latest-item:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(42,32,18,.08); }
.latest-thumb { display: grid; place-items: center; min-height: 185px; background: #f5eee3; }
.latest-thumb img { width: 88%; height: 155px; object-fit: contain; }
.latest-copy { padding: 20px 22px; }
.latest-copy h3 { margin: 10px 0 7px; font-family: "Poppins",sans-serif; font-size: 18px; line-height: 1.4; }
.latest-copy h3 a { color: #2d2823; }
.latest-copy h3 a:hover { color: #9b6b20; }
.latest-copy > p { margin-bottom: 12px; color: #756e66; font-size: 13px; line-height: 1.65; }
.latest-stats { display: flex; justify-content: space-between; color: #8b837a; font-size: 11px; }
.latest-stats a { color: #9b6b20; font-weight: 700; }
.popular-news { position: sticky; top: 116px; overflow: hidden; border: 1px solid #e8ddce; border-radius: 16px; background: #fff; box-shadow: 0 14px 40px rgba(42,32,18,.07); }
.popular-header { display: flex; align-items: center; gap: 12px; padding: 20px 22px; border-bottom: 1px solid #eee5d9; background: linear-gradient(135deg,#fffaf1,#fff); }
.popular-header > i { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: #8d0801; color: #fff; }
.popular-header h2 { font-size: 20px; }
.popular-list { padding: 5px 20px; }
.popular-item { display: grid; grid-template-columns: 35px 1fr; gap: 11px; padding: 17px 0; border-bottom: 1px solid #f0e9df; }
.popular-item:last-child { border-bottom: 0; }
.popular-item > strong { color: #d6c5aa; font-family: Georgia,serif; font-size: 24px; line-height: 1; }
.popular-item > span { display: grid; gap: 5px; }
.popular-item small { color: #a87629; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.popular-item b { color: #3b3530; font-size: 13px; line-height: 1.45; }
.popular-item em { color: #928a81; font-size: 10px; font-style: normal; }
.popular-item:hover b { color: #8d0801; }
.popular-note { padding: 12px 20px; background: #faf7f2; color: #918980; font-size: 10px; }
.article-main { padding: 30px 0 60px; }
.article-shell { max-width: 900px; }
.article-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; color: #888077; font-size: 12px; }
.article-breadcrumb a { color: #9b6b20; }
.article-title { max-width: 700px; margin: auto; text-align: center; }
.article-title h1 { margin: 14px 0 10px; color: #27221d; font-family: "Poppins", sans-serif; font-size: clamp(27px, 4vw, 38px); line-height: 1.25; }
.article-title > p { color: #706960; font-size: 15px; line-height: 1.65; }
.article-author { display: inline-flex; align-items: center; gap: 9px; margin-top: 14px; text-align: left; }
.article-author img { width: 34px; height: 34px; padding: 5px; border: 1px solid #eadfce; border-radius: 50%; background: #fff; object-fit: contain; }
.article-author span { display: grid; }
.article-author strong { color: #514941; font-size: 11px; }
.article-author small { color: #988f85; font-size: 9px; }
.article-meta { display: flex; justify-content: center; gap: 20px; margin-top: 15px; color: #827a71; font-size: 12px; }
.article-figure { margin: 28px auto 34px; }
.article-slider { position: relative; overflow: hidden; aspect-ratio: 5 / 2; border-radius: 16px; background: linear-gradient(145deg,#fffaf1,#eee4d5); }
.article-slide { display: none; width: 100%; height: 100%; }
.article-slide.active { display: block; animation: articleSlideFade .45s ease; }
.article-slider .article-cover { width: 100%; height: 100%; margin: 0; padding: 0; border-radius: 0; background: transparent; object-fit: cover; }
.article-slider-prev,.article-slider-next { position: absolute; top: 50%; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(39,34,29,.62); color: #fff; transform: translateY(-50%); cursor: pointer; }
.article-slider-prev { left: 16px; }.article-slider-next { right: 16px; }
.article-slider-dots { position: absolute; right: 0; bottom: 14px; left: 0; display: flex; justify-content: center; gap: 7px; }
.article-slider-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: rgba(39,34,29,.3); cursor: pointer; }
.article-slider-dots button.active { width: 22px; border-radius: 5px; background: #9b6b20; }
@keyframes articleSlideFade { from { opacity: .35; } to { opacity: 1; } }
.article-cover { display: block; width: 100%; height: 350px; margin: 0; padding: 32px; border-radius: 16px; background: linear-gradient(145deg,#fffaf1,#eee4d5); object-fit: contain; }
.article-figure figcaption { padding-top: 8px; color: #9a9188; font-size: 10px; text-align: center; }
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 190px; gap: 42px; max-width: 780px; margin: auto; }
.article-content { min-width: 0; }
.article-content p { max-width: 100%; margin-bottom: 19px; overflow-wrap: anywhere; word-break: break-word; color: #514b44; font-size: 15px; line-height: 1.85; }
.article-content p:first-child::first-letter { float: left; margin: 10px 8px 0 0; color: #9b6b20; font-family: Georgia, serif; font-size: 62px; line-height: .72; }
.article-summary { display: flex; min-width: 0; gap: 13px; margin-bottom: 24px; padding: 16px; border: 1px solid #eadcc7; border-radius: 11px; background: linear-gradient(135deg,#fff8ea,#fffdf9); }
.article-summary > div { min-width: 0; }
.article-summary > i { color: #b68130; font-size: 20px; }
.article-summary strong { display: block; margin-bottom: 4px; color: #423b34; font-size: 12px; }
.article-summary p { margin: 0; color: #766d64; font-size: 12px; line-height: 1.6; }
.article-summary p::first-letter { float: none; margin: 0; color: inherit; font: inherit; }
.article-content .article-summary + p::first-letter { float: left; margin: 10px 8px 0 0; color: #9b6b20; font-family: Georgia,serif; font-size: 62px; line-height: .72; }
.article-end { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding: 14px 16px; border: 1px solid #eadfce; border-radius: 11px; background: linear-gradient(135deg,#fffaf2,#fff); color: #766e65; font-size: 12px; line-height: 1.5; }
.article-end img { flex: 0 0 auto; width: 30px; height: 30px; padding: 3px; border-radius: 50%; background: #fff; object-fit: contain; box-shadow: 0 3px 10px rgba(91,62,22,.08); }
.article-share { position: sticky; top: 120px; align-self: start; display: grid; gap: 8px; padding: 15px; border: 1px solid #eadfce; border-radius: 12px; background: #fff; }
.article-share strong { margin-bottom: 5px; font-size: 13px; }
.article-share > p { margin: 0 0 4px; color: #8a8178; font-size: 10px; line-height: 1.5; }
.share-buttons { display: flex; gap: 7px; }
.article-share .share-buttons a, .article-share .share-buttons button { display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid #e9e0d3; border-radius: 9px; background: #fff; color: #5b544d; font-size: 15px; }
.article-share .share-buttons .share-facebook:hover { border-color: #1877f2; background: #1877f2; color: #fff; }
.article-share .share-buttons .share-instagram:hover { border-color: #c13584; background: linear-gradient(135deg,#feda75,#d62976,#4f5bd5); color: #fff; }
.article-share .share-buttons button:last-child:hover { border-color: #9b6b20; background: #9b6b20; color: #fff; }
.article-share small { min-height: 18px; color: #4f7b43; }
.share-divider { height: 1px; background: #eee5da; }
.article-topic { display: grid; gap: 2px; color: #9a9187; font-size: 9px; text-transform: uppercase; }
.article-topic b { color: #9b6b20; font-size: 11px; text-transform: none; }
.reading-progress { position: fixed; z-index: 10000; top: 0; left: 0; width: 0; height: 3px; background: linear-gradient(90deg,#cda45e,#8d0801); }
.related-news { max-width: 780px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid #e5dbce; }
.related-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 17px; }
.related-heading span { color: #b17b28; font-size: 9px; font-weight: 700; letter-spacing: 1.5px; }
.related-heading h2 { margin: 2px 0 0; color: #302a25; font-family: "Poppins",sans-serif; font-size: 21px; }
.related-heading > a { color: #9b6b20; font-size: 11px; font-weight: 700; }
.related-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.related-card { display: grid; grid-template-columns: 115px 1fr; overflow: hidden; border: 1px solid #e8ded1; border-radius: 12px; background: #fff; }
.related-card > div { display: grid; place-items: center; background: #f5eee4; }
.related-card img { width: 95px; height: 95px; object-fit: contain; }
.related-card > span { display: grid; align-content: center; gap: 6px; padding: 14px; }
.related-card small { color: #a47734; font-size: 9px; }
.related-card b { color: #403a34; font-size: 12px; line-height: 1.4; }
.related-card em { color: #968d84; font-size: 9px; font-style: normal; }
.related-card:hover b { color: #8d0801; }
.article-footer { padding: 26px 15px; background: #211d19; color: #aaa29a; text-align: center; font-size: 13px; }
.news-page #footer .footer-info > img { margin-bottom: 14px; }
.news-page #footer .footer-links p { color: #aaa6a0; font-size: 13px; line-height: 1.7; }
.news-page #footer .footer-links li { gap: 4px; }
.news-page #footer .footer-links li i { color: #cda45e; font-size: 12px; }
.footer-news-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 5px; padding: 9px 13px; border: 1px solid #cda45e; border-radius: 7px; color: #cda45e !important; font-size: 12px; font-weight: 700; }
.footer-news-link:hover { background: #cda45e; color: #211d19 !important; }
@media (max-width: 767px) {
  #footer .footer-mobile-hide {
    display: none !important;
  }

  .news-page { padding-top: 108px; }
  .article-header img { height: 42px; }
  .news-hero { padding: 36px 0 32px; }
  .article-main { padding-top: 24px; }
  .article-layout { display: block; }
  .article-cover { height: 260px; margin: 24px auto; padding: 20px; border-radius: 14px; }
  .article-share { position: static; margin-top: 36px; }
  .article-meta { flex-wrap: wrap; gap: 12px; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 991px) {
  .news-dashboard { grid-template-columns: 1fr; }
  .popular-news { position: static; }
}
@media (max-width: 767px) {
  .featured-news { grid-template-columns: 1fr; }
  .featured-news { border-radius: 14px; }
  .featured-visual {
    height: clamp(190px, 42vw, 230px);
    min-height: 0;
  }
  .featured-slide::before {
    inset: -12px;
    filter: blur(16px);
  }
  .featured-slide img {
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    object-fit: contain;
  }
  .featured-visual > span {
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    font-size: 9px;
  }
  .featured-slider-prev,
  .featured-slider-next {
    width: 34px;
    height: 34px;
  }
  .featured-slider-prev { left: 8px; }
  .featured-slider-next { right: 8px; }
  .featured-slider-dots { bottom: 8px; }
  .featured-copy { padding: 24px 20px; }
  .news-filter { grid-template-columns: 1fr; padding: 14px; }
  .news-categories { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 3px; }
  .news-categories button { flex: 0 0 auto; }
  .news-filter-result { grid-column: auto; }
  .portal-section-title { display: block; }
  .portal-section-title p { margin-top: 6px; }
  .latest-item { grid-template-columns: 110px minmax(0,1fr); }
  .latest-thumb { min-height: 150px; }
  .latest-thumb img { height: 110px; }
  .latest-copy { padding: 15px; }
  .latest-copy h3 { font-size: 15px; }
  .latest-copy > p { display: none; }
}

/* Keep phone and business hours visible on mobile */
@media (max-width: 767px) {
  #topbar,
  #topbar .container,
  #topbar .contact-info {
    height: 38px;
    min-height: 38px;
  }

  #topbar.topbar-scrolled {
    top: -38px;
  }

  #topbar .container {
    padding-right: 10px;
    padding-left: 10px;
  }

  #topbar .contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(9px, 3vw, 20px);
    width: 100%;
  }

  #topbar .contact-info i,
  #topbar .contact-info i + i {
    display: inline-flex !important;
    min-width: 0;
    margin-left: 0 !important;
    font-size: clamp(10px, 2.6vw, 13px);
  }

  #topbar .contact-info i span,
  #topbar .contact-info i:first-child span {
    padding-left: 5px;
    font-size: inherit;
    letter-spacing: 0;
  }

  #header {
    top: 38px;
  }
}

/* Final mobile off-canvas navigation overrides */
@media (max-width: 991px) {
  .navbar.navbar-mobile {
    position: fixed;
    inset: 0;
    display: block;
    padding: 0;
    overflow: hidden;
    background: rgba(19, 16, 13, .6);
    backdrop-filter: blur(3px);
  }

  .navbar.navbar-mobile > ul {
    position: fixed;
    inset: 0 0 0 auto !important;
    display: block;
    width: min(340px, 86vw) !important;
    height: 100dvh;
    max-height: 100dvh !important;
    margin: 0;
    padding: 82px 18px 26px !important;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-left: 1px solid rgba(205, 164, 94, .3);
    border-radius: 0 !important;
    background: #fffdf9;
    box-shadow: -16px 0 48px rgba(0, 0, 0, .25);
    animation: mobile-sidebar-in .28s cubic-bezier(.2, .75, .25, 1) both;
  }

  .navbar.navbar-mobile > ul::before {
    margin: 0 8px 16px;
    padding-bottom: 15px;
    font-size: 18px;
  }

  .navbar.navbar-mobile .mobile-nav-toggle {
    position: fixed;
    top: 18px;
    right: 16px;
    z-index: 1002;
    width: 44px;
    height: 44px;
    border: 1px solid #dfc79f;
    background: #fff8eb;
    color: #a86f19;
  }

  .navbar.navbar-mobile > ul > li > a,
  .navbar.navbar-mobile > ul > li > a:focus {
    min-height: 49px;
    padding: 12px;
    outline: 0;
    border-radius: 8px;
    box-shadow: none;
  }

  .navbar.navbar-mobile .dropdown > a {
    justify-content: space-between;
  }

  .navbar.navbar-mobile .dropdown > ul.dropdown-active {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    margin: 6px 0 10px;
    padding: 9px;
    border: 1px solid #eee2d1;
    border-radius: 10px;
    background: #f8f3eb;
  }

  .navbar.navbar-mobile .dropdown > ul.dropdown-active li {
    width: 100%;
  }

  .navbar.navbar-mobile .dropdown > ul.dropdown-active a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100%;
    min-height: 44px;
    padding: 9px 11px !important;
    border: 1px solid #eadfce;
    border-radius: 8px;
    background: #fff;
    color: #332e28;
  }

  .navbar.navbar-mobile .dropdown > ul.dropdown-active img {
    flex: 0 0 auto;
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
  }

  .navbar.navbar-mobile .dropdown > ul.dropdown-active .language {
    margin-left: 9px !important;
    font-size: 14px;
    font-weight: 600;
  }
}

@media (max-width: 380px) {
  .navbar.navbar-mobile > ul {
    width: min(310px, 88vw) !important;
    padding-right: 14px !important;
    padding-left: 14px !important;
  }
}

@media (max-width: 991px) {
  .navbar-mobile {
    display: block;
    padding: 0;
    background: rgba(19, 16, 13, .58);
    backdrop-filter: blur(3px);
  }

  .navbar-mobile > ul {
    position: fixed;
    inset: 0 0 0 auto;
    display: block;
    width: min(360px, 88vw);
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 88px 20px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-left: 1px solid rgba(205, 164, 94, .28);
    border-radius: 0;
    background: #fffdf9;
    box-shadow: -18px 0 55px rgba(0, 0, 0, .24);
  }

  .navbar-mobile .mobile-nav-toggle {
    position: fixed;
    top: 22px;
    right: 20px;
    z-index: 1002;
  }
}

@media (max-width: 420px) {
  .navbar-mobile > ul {
    width: min(330px, 90vw);
    padding: 82px 16px 24px;
  }

  .navbar-mobile .mobile-nav-toggle {
    top: 18px;
    right: 16px;
  }
}

@media (max-width: 350px) {
  #topbar .contact-info {
    gap: 7px;
  }

  #topbar .contact-info i,
  #topbar .contact-info i + i {
    font-size: 9.5px;
  }

  #topbar .contact-info i span,
  #topbar .contact-info i:first-child span {
    padding-left: 3px;
  }
}

/* Mobile navigation as an off-canvas sidebar */
@media (max-width: 991px) {
  .navbar-mobile {
    display: block;
    padding: 0;
    background: rgba(19, 16, 13, .58);
    backdrop-filter: blur(3px);
    animation: mobile-nav-backdrop-in .2s ease both;
  }

  .navbar-mobile > ul {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    display: block;
    width: min(360px, 88vw);
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: 88px 20px 28px;
    overflow-x: hidden;
    overflow-y: auto;
    border: 0;
    border-left: 1px solid rgba(205, 164, 94, .28);
    border-radius: 0;
    background: #fffdf9;
    box-shadow: -18px 0 55px rgba(0, 0, 0, .24);
    animation: mobile-sidebar-in .28s cubic-bezier(.2, .75, .25, 1) both;
  }

  .navbar-mobile > ul::before {
    content: "Menu";
    display: block;
    margin: 0 8px 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eadfce;
    color: #29241f;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
  }

  .navbar-mobile .mobile-nav-toggle {
    position: fixed;
    z-index: 1002;
    top: 22px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid #eadcc7;
    background: #fff8eb;
    color: #a86f19;
    box-shadow: 0 8px 22px rgba(72, 48, 20, .12);
  }

  .navbar-mobile > ul > li + li {
    border-top: 1px solid #f0ebe3;
  }

  .navbar-mobile > ul > li > a,
  .navbar-mobile > ul > li > a:focus {
    min-height: 52px;
    padding: 14px 12px;
    border-radius: 8px;
    font-size: 15px;
  }

  .navbar-mobile .dropdown ul {
    margin: 5px 0 12px;
  }
}

@media (max-width: 420px) {
  .navbar-mobile > ul {
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(330px, 90vw);
    max-height: none;
    padding: 82px 16px 24px;
    border-radius: 0;
  }

  .navbar-mobile .mobile-nav-toggle {
    top: 18px;
    right: 16px;
  }
}

@keyframes mobile-sidebar-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

@keyframes mobile-nav-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 420px) {
  .container,
  .container-fluid {
    padding-right: 14px;
    padding-left: 14px;
  }

  #hero h1 {
    font-size: 31px;
  }

  .section-title p {
    font-size: 25px;
  }

  .form-security-row .captcha-card {
    display: block;
    padding: 15px;
  }

  .form-security-row .captcha-check {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
  }

  .captcha-heading {
    flex-direction: row;
    align-items: center;
  }

  .form-security-row .captcha-controls {
    display: grid;
    grid-template-columns: 1fr 1fr 44px;
    gap: 8px;
  }

  .form-security-row .captcha-question,
  .form-security-row .captcha-controls .form-control {
    width: 100%;
    min-width: 0;
  }

  .contact-submit {
    min-width: 0;
  }
}

/* Clean mobile contact bar */
@media (max-width: 767px) {
  #topbar {
    top: 0;
    height: 36px;
    min-height: 36px;
    padding: 0;
    background: #73130f;
    border-bottom: 1px solid rgba(205, 164, 94, 0.32);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    font-size: 13px;
  }

  #topbar.topbar-scrolled {
    top: -36px;
  }

  #topbar .container,
  #topbar .contact-info {
    height: 36px;
    min-height: 36px;
  }

  #topbar .container {
    display: flex;
    align-items: center;
    justify-content: center !important;
    padding-top: 0;
    padding-bottom: 0;
  }

  #topbar .contact-info {
    width: auto;
    max-width: 100%;
    justify-content: center;
    overflow: hidden;
  }

  #topbar .contact-info i {
    display: inline-flex !important;
    align-items: center;
    color: #e5bd72;
    line-height: 1;
    white-space: nowrap;
  }

  #topbar .contact-info i:first-child {
    margin: 0;
  }

  #topbar .contact-info i:first-child span {
    padding-left: 7px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
  }

  #topbar .contact-info i + i {
    display: none !important;
  }

  #header {
    top: 36px;
  }

  #header.header-scrolled {
    top: 0;
  }
}

/* Compact mobile footer */
@media (max-width: 767px) {
  #footer {
    padding-bottom: 18px;
  }

  #footer .footer-top {
    padding: 34px 0 22px;
  }

  #footer .footer-top .row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 0;
  }

  #footer .footer-top .row > [class*="col-"] {
    width: 100%;
    padding: 0;
    margin: 0;
  }

  #footer .footer-top .footer-spacer {
    display: none;
  }

  #footer .footer-top .footer-info {
    max-width: 520px;
    margin: 0 auto;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  #footer .footer-top .footer-info > img {
    width: 86px;
    height: auto;
    margin-bottom: 8px;
  }

  #footer .footer-top .footer-info p {
    max-width: 490px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.65;
  }

  #footer .footer-top .social-links {
    margin-top: 14px !important;
  }

  #footer .footer-top .social-links a,
  #footer .footer-top .social-links a img {
    width: 40px;
    height: 40px;
  }

  #footer .footer-top .social-links a {
    margin: 0 3px;
  }

  #footer .footer-top .footer-links {
    padding-bottom: 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  #footer .footer-top .footer-links:last-child {
    padding-bottom: 0 !important;
    border-bottom: 0;
  }

  #footer .footer-top h4 {
    margin: 0 0 10px;
    padding: 0;
    font-size: 17px;
    text-align: center;
  }

  #footer .footer-top .footer-links ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 12px;
    max-width: 480px;
    margin: 0 auto;
  }

  #footer .footer-top .footer-links ul li,
  #footer .footer-top .footer-links ul li:first-child {
    justify-content: flex-start;
    min-width: 0;
    padding: 7px 4px;
  }

  #footer .footer-top .footer-links ul i {
    flex: 0 0 auto;
    padding-right: 3px;
    font-size: 16px;
  }

  #footer .footer-top .footer-links ul a {
    min-width: 0;
    font-size: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  #footer .copyright {
    padding: 17px 50px 0;
    font-size: 11px;
    line-height: 1.5;
  }
}

@media (max-width: 360px) {
  #footer .footer-top {
    padding-top: 28px;
  }

  #footer .footer-top .footer-info p {
    font-size: 12px;
  }

  #footer .footer-top .footer-links ul {
    gap: 3px 7px;
  }

  #footer .footer-top .footer-links ul a {
    font-size: 12px;
  }
}

/* Compact mobile product, benefits, and partner layouts */
@media (max-width: 767px) {
  #produk.events {
    min-height: 0;
    padding: 44px 0 38px;
    background-position: center top;
    background-attachment: scroll;
  }

  #produk .section-title {
    padding-bottom: 22px;
  }

  #produk .events-slider {
    overflow: hidden;
  }

  #produk .event-item {
    display: grid;
    grid-template-columns: minmax(0, 48%) minmax(0, 52%);
    align-items: center;
    min-height: 300px;
    margin: 0;
    text-align: left;
  }

  #produk .event-item > [class*="col-"] {
    width: 100%;
    padding: 8px;
  }

  #produk .event-item > [class*="col-"]:first-child img {
    width: 100% !important;
    max-height: 255px;
    margin: 0 auto;
    object-fit: contain;
  }

  #produk .event-item .content {
    padding-top: 8px !important;
  }

  #produk .event-item .content h3 {
    margin-bottom: 8px;
    font-size: clamp(18px, 5vw, 24px);
    line-height: 1.2;
  }

  #produk .event-item .price {
    margin-bottom: 12px;
    font-size: clamp(16px, 4.6vw, 22px);
    line-height: 1.3;
  }

  #produk .event-item .content > img {
    width: 100% !important;
    max-width: 190px;
    max-height: 72px;
    margin: 4px 0 0;
    object-fit: contain;
    object-position: left center;
  }

  #why-us.why-us {
    padding: 48px 0;
  }

  #why-us .section-title {
    padding-bottom: 24px;
  }

  #why-us .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
  }

  #why-us .row > [class*="col-"] {
    display: flex;
    width: auto;
    margin: 0 !important;
    padding: 0;
  }

  #why-us .box {
    min-height: 250px;
    padding: 20px 16px;
    border-radius: 11px;
    background-position: center bottom;
    background-size: cover;
    box-shadow: 0 6px 18px rgba(31, 27, 20, 0.1);
  }

  #why-us .box:hover {
    padding: 20px 16px;
    transform: translateY(-2px);
  }

  #why-us .box span {
    font-size: 24px;
  }

  #why-us .box h4 {
    margin: 10px 0;
    font-size: clamp(17px, 4.7vw, 21px);
    line-height: 1.25;
  }

  #why-us .box p {
    font-size: clamp(12px, 3.25vw, 14px);
    line-height: 1.55;
  }

  #partner.testimonials {
    padding: 44px 0 38px;
  }

  #partner .section-title {
    padding-bottom: 20px;
  }

  #partner .testimonials-slider {
    min-height: 130px;
  }

  #partner .swiper-wrapper {
    align-items: center;
  }

  #partner .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 10px;
  }

  #partner .swiper-slide img {
    width: 100% !important;
    max-width: 170px;
    max-height: 92px;
    object-fit: contain;
  }
}

@media (max-width: 420px) {
  #produk .event-item {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    min-height: 265px;
  }

  #produk .event-item > [class*="col-"]:first-child img {
    max-height: 220px;
  }

  #produk .event-item .content > img {
    max-height: 58px;
  }

  #why-us .row {
    gap: 9px;
  }

  #why-us .box {
    min-height: 275px;
    padding: 17px 12px;
  }

  #why-us .box:hover {
    padding: 17px 12px;
  }

  #why-us .box span {
    font-size: 22px;
  }

  #why-us .box p {
    font-size: 11.5px;
    line-height: 1.5;
  }

  #partner .swiper-slide img {
    max-width: 135px;
    max-height: 74px;
  }
}

@media (max-width: 350px) {
  #why-us .box {
    min-height: 290px;
    padding: 16px 10px;
  }

  #why-us .box:hover {
    padding: 16px 10px;
  }
}

/* Compact and accessible mobile navigation */
@media (max-width: 991px) {
  body.mobile-nav-open {
    overflow: hidden;
  }

  .navbar-mobile {
    display: block;
    padding: 0;
    background: rgba(16, 14, 12, 0.72);
    backdrop-filter: blur(5px);
  }

  .navbar-mobile .mobile-nav-toggle {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #e1b969;
    font-size: 27px;
  }

  .navbar-mobile > ul {
    display: block;
    top: 78px;
    right: 16px;
    bottom: auto;
    left: 16px;
    width: auto;
    max-height: calc(100dvh - 98px);
    padding: 10px;
    border: 1px solid rgba(205, 164, 94, 0.22);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .navbar-mobile > ul > li + li {
    border-top: 1px solid #f0ede8;
  }

  .navbar-mobile > ul > li > a,
  .navbar-mobile > ul > li > a:focus {
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 9px;
    color: #27231e;
    font-size: 15px;
    font-weight: 500;
  }

  .navbar-mobile > ul > li > a:hover,
  .navbar-mobile > ul > li > a.active {
    background: #fff8eb;
    color: #bd8b3d;
  }

  .navbar-mobile > ul > li > a.active::before {
    content: "";
    width: 4px;
    height: 22px;
    margin-right: 10px;
    border-radius: 4px;
    background: #cda45e;
  }

  .navbar-mobile .dropdown > a::after {
    margin-left: auto;
    transition: transform 0.2s ease;
  }

  .navbar-mobile .dropdown > a[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  .navbar-mobile .dropdown ul {
    margin: 4px 6px 10px;
    padding: 8px;
    border: 0;
    border-radius: 10px;
    background: #f8f6f2;
    box-shadow: none;
  }

  .navbar-mobile .dropdown ul li {
    min-width: 0;
  }

  .navbar-mobile .dropdown ul a {
    min-height: 44px;
    padding: 9px 12px;
    border-radius: 8px;
  }

  .navbar-mobile .dropdown ul a:hover {
    background: #fff;
  }

  .navbar-mobile .dropdown ul img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
  }
}

@media (min-width: 576px) and (max-width: 991px) {
  .navbar-mobile > ul {
    right: 22px;
    left: auto;
    width: min(390px, calc(100vw - 44px));
  }
}

@media (max-width: 420px) {
  .navbar-mobile .mobile-nav-toggle {
    top: 17px;
    right: 16px;
  }

  .navbar-mobile > ul {
    top: 70px;
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - 82px);
    padding: 8px;
    border-radius: 13px;
  }

  .navbar-mobile > ul > li > a,
  .navbar-mobile > ul > li > a:focus {
    min-height: 45px;
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  #topbar .contact-info i + i {
    display: inline-flex !important;
    margin-left: 0 !important;
  }

  #topbar,
  #topbar .container,
  #topbar .contact-info {
    height: 38px;
    min-height: 38px;
  }

  #topbar.topbar-scrolled {
    top: -38px;
  }

  #topbar .contact-info {
    gap: clamp(9px, 3vw, 20px);
    width: 100%;
  }

  #topbar .contact-info i {
    min-width: 0;
    color: #e5bd72;
    font-size: clamp(10px, 2.6vw, 13px);
  }

  #topbar .contact-info i span,
  #topbar .contact-info i:first-child span {
    padding-left: 5px;
    color: #fff;
    font-size: inherit;
    font-weight: 500;
  }

  .news-page #topbar .contact-info i {
    color: #b6802f;
  }

  .news-page #topbar .contact-info i span,
  .news-page #topbar .contact-info i:first-child span {
    color: #51483f;
  }

  #header {
    top: 38px;
  }
}
