@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap");

/* =================================================================
   GLOBAL SETTINGS & CSS VARIABLES – Enhanced for Elegance
================================================================= */

:root {
  /* Warna tetap sama – tidak diubah */
  --primary-color: #ffbe33;
  --primary-hover-color: #e69c00;
  --dark-bg: #222831;
  --body-bg: #1a1f26;
  --light-text: #ffffff;
  --dark-text: #222222;
  --light-gray: #f1f2f3;

  /* Tipografi */
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --base-font-size: 16px;

  /* Tambahan untuk konsistensi visual elegan */
  --card-border-radius: 16px;
  --btn-border-radius: 50px;
  --transition-smooth: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  --card-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  --card-shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.35);
}

body {
  font-family: var(--font-body);
  color: var(--light-text);
  background-color: var(--body-bg);
  overflow-x: hidden;
  font-size: var(--base-font-size);
  font-weight: 400;
  letter-spacing: 0.3px;
  line-height: 1.6;
  animation: pageLoadFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* UNIVERSAL PADDING – disesuaikan lebih simetris */
.layout_padding {
  padding: 6.25rem 0;
}

.layout_padding2 {
  padding: 5rem 0;
}

.layout_padding2-top {
  padding-top: 5rem;
}

.layout_padding2-bottom {
  padding-bottom: 5rem;
}

.layout_padding-top {
  padding-top: 6.25rem;
}

.layout_padding-bottom {
  padding-bottom: 6.25rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--light-text);
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.heading_container h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--light-gray);
}

.heading_container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 2px;
}

.heading_container h2 span {
  color: var(--primary-color);
}

.heading_container p {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.85;
  max-width: 70ch;
}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

.heading_container.heading_center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--primary-color);
}

.btn,
.btn:focus {
  outline: none;
  box-shadow: none;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
}

/* HEADER / HERO SECTION */
.hero_area {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box .img-box {
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.box .img-box img {
  width: 100%;
  height: 12.5rem;
  object-fit: cover;
  display: block;
}

.sub_page .hero_area {
  min-height: auto;
}

.sub_page .hero_area .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sub_page .hero_area .bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.header_section {
  padding: 0.9375rem 0;
  background-color: rgba(34, 40, 49, 0.7);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: navSlideDown 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.header_section .container-fluid {
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
}

.navbar-brand span {
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--light-text);
  letter-spacing: 0.5px;
}

.custom_nav-container {
  padding: 0;
}

.custom_nav-container .navbar-nav {
  padding-left: 18%;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
  font-weight: 500;
  padding: 0.3125rem 1.25rem;
  color: var(--light-text);
  text-align: center;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  position: relative;
}

.custom_nav-container .navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
  opacity: 0;
  transition: all 0.3s ease;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link::after,
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after {
  width: 40%;
  left: 30%;
  opacity: 1;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link {
  color: var(--primary-color);
}

.custom_nav-container .nav_search-btn {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  color: var(--light-text);
  margin: 0 0.625rem;
  transition: color 0.3s ease;
}

.custom_nav-container .nav_search-btn:hover {
  color: var(--primary-color);
}

.user_option {
  display: flex;
  align-items: center;
}

.user_option a {
  margin: 0 0.625rem;
}

.user_option .user_link {
  color: var(--light-text);
  transition: color 0.3s ease;
  font-weight: 500;
}

.user_option .user_link:hover {
  color: var(--primary-color);
}

.user_option .cart_link {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.user_option .cart_link svg {
  width: 1.0625rem;
  height: auto;
  fill: var(--light-text);
  margin-bottom: 0.125rem;
}

.user_option .cart_link:hover svg {
  fill: var(--primary-color);
}

.user_option .order_online {
  font-weight: 600;
  display: inline-block;
  padding: 0.625rem 2rem;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: var(--btn-border-radius);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.user_option .order_online:hover {
  background-color: var(--primary-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 190, 51, 0.3);
}

.custom_nav-container .navbar-toggler {
  outline: none;
  padding: 0;
  width: 2.3125rem;
  height: 2.625rem;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
  display: block;
  width: 2.1875rem;
  height: 0.25rem;
  background-color: var(--light-text);
  margin: 0.4375rem 0;
  transition: all 0.3s;
  position: relative;
  border-radius: 5px;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: var(--light-text);
  border-radius: 5px;
  transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before {
  top: -0.625rem;
}

.custom_nav-container .navbar-toggler span::after {
  top: 0.625rem;
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] {
  transform: rotate(360deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.custom_nav-container .navbar-toggler[aria-expanded="true"] span::before,
.custom_nav-container .navbar-toggler[aria-expanded="true"] span::after {
  transform: rotate(90deg);
  top: 0;
}

/* SLIDER SECTION */
.slider_section {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 3.75rem 0 5.625rem 0;
  z-index: 2;
}

.slider_section .row {
  align-items: center;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: unset;
}

.slider_section .detail-box {
  color: var(--light-text);
  margin-bottom: 2rem;
  text-align: center;
  animation: heroSlideUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1.4) 0.3s backwards;
}

.slider_section .detail-box h1 {
  font-size: 3.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  line-height: 1.2;
  background: linear-gradient(to right, var(--light-text), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.slider_section .detail-box p {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  max-width: 70ch;
  margin: 0 auto 1.875rem;
}

.slider_section .detail-box a {
  font-weight: 600;
  display: inline-block;
  padding: 0.625rem 2.8125rem;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: var(--btn-border-radius);
  transition: var(--transition-smooth);
  border: none;
  margin-top: 0.625rem;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

.slider_section .detail-box a:hover {
  background-color: var(--primary-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 190, 51, 0.3);
}

.slider_section .img-box {
  animation: scaleIn 1s cubic-bezier(0.34, 1.56, 0.64, 1.4) 0.5s backwards;
}

.slider_section .img-box img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.slider_section .carousel-indicators {
  position: unset;
  margin: 2.5rem 0 0 0;
  justify-content: center;
  gap: 10px;
}

.slider_section .carousel-indicators li {
  width: 8px;
  height: 8px;
  border: 2px solid var(--light-text);
  background: transparent;
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.slider_section .carousel-indicators li.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.3);
}

/* OFFER SECTION */
.offer_section {
  position: relative;
  padding-top: 2.8125rem;
}

.offer_section .box {
  display: flex;
  align-items: center;
  margin-top: 2.8125rem;
  border-radius: var(--card-border-radius);
  padding: 1.25rem 0.9375rem;
  background-color: var(--dark-bg);
  color: var(--light-text);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  animation: fadeInUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) backwards;
}

.offer_section .box:nth-child(1) { animation-delay: 0.1s; }
.offer_section .box:nth-child(2) { animation-delay: 0.2s; }
.offer_section .box:nth-child(3) { animation-delay: 0.3s; }

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

.offer_section .box .img-box {
  width: 10.9375rem;
  min-width: 10.9375rem;
  height: 10.9375rem;
  margin-right: 0.9375rem;
  position: relative;
  border-radius: 100%;
  border: 5px solid var(--primary-color);
  overflow: hidden;
  transition: all 0.5s;
}

.offer_section .box .img-box img {
  width: 100%;
  transition: all 0.4s ease;
}

.offer_section .box .detail-box h5 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin: 0;
  font-weight: 700;
}

.offer_section .box .detail-box h6 {
  font-family: var(--font-body);
  margin: 0.625rem 0;
  font-weight: 500;
}

.offer_section .box .detail-box h6 span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.offer_section .box .detail-box a {
  font-weight: 600;
  display: inline-block;
  padding: 0.625rem 1.875rem;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: var(--btn-border-radius);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.offer_section .box .detail-box a:hover {
  background-color: var(--primary-hover-color);
  transform: translateY(-2px);
}

.offer_section .box .detail-box a svg {
  width: 1.25rem;
  height: auto;
  margin-left: 0.3125rem;
  fill: var(--dark-text);
}

.offer_section .box:hover .img-box img {
  transform: scale(1.1);
}

/* FOOD SECTION */
.food_section .filters_menu {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
  margin: 2.8125rem 0 1.25rem 0;
  gap: 10px;
}

.food_section .filters_menu li {
  padding: 0.4375rem 1.5625rem;
  cursor: pointer;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--light-text);
}

.food_section .filters_menu li:hover {
  background-color: var(--primary-color);
  color: var(--dark-bg);
  border-color: var(--primary-color);
}

.food_section .filters_menu li.active {
  background-color: var(--dark-bg);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.food_section .box {
  position: relative;
  margin-top: 1.5625rem;
  color: var(--light-text);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  background-color: var(--dark-bg);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  animation: fadeInUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) backwards;
}

.food_section .box:nth-child(1) { animation-delay: 0.1s; }
.food_section .box:nth-child(2) { animation-delay: 0.2s; }
.food_section .box:nth-child(3) { animation-delay: 0.3s; }
.food_section .box:nth-child(4) { animation-delay: 0.4s; }

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

.food_section .box .img-box {
  background: var(--light-gray);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 17.4375rem;
  border-radius: 12px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
}

.food_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.food_section .box:hover .img-box img {
  transform: scale(1.05);
}

.food_section .box .detail-box {
  padding: 1.5625rem;
}

.food_section .box .detail-box h5 {
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  margin: 0 0 0.5rem 0;
}

.food_section .box .detail-box p {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.food_section .box .detail-box h6 {
  margin-top: 0.625rem;
  font-weight: 600;
  color: var(--primary-color);
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.store-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

.options h6 {
  margin: 0;
  padding: 0;
  color: #ffa500;
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2;
}

.store-info svg {
  color: #ffa500;
  vertical-align: middle;
}

.food_section .box .options a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  background: var(--primary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.food_section .box .options a:hover {
  background: var(--primary-hover-color);
  transform: scale(1.15);
}

.food_section .box .options a svg {
  width: 1.125rem;
  height: auto;
  fill: var(--dark-text);
}

.food_section .btn-box {
  display: flex;
  justify-content: center;
  margin-top: 2.8125rem;
}

.food_section .btn-box a {
  font-weight: 600;
  display: inline-block;
  padding: 0.625rem 3.4375rem;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: var(--btn-border-radius);
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.food_section .btn-box a:hover {
  background-color: var(--primary-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 190, 51, 0.3);
}

/* ABOUT SECTION */
.about_section {
  background: var(--dark-bg);
  color: var(--light-text);
}

.about_section .row {
  align-items: center;
}

.about_section .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) backwards;
}

.about_section .img-box img {
  width: 100%;
  max-width: 27.8125rem;
  position: relative;
  z-index: 2;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.about_section .detail-box {
  animation: fadeInUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) backwards;
  animation-delay: 0.2s;
}

.about_section .detail-box p {
  margin-top: 0.9375rem;
  font-weight: 400;
  line-height: 1.7;
  opacity: 0.9;
}

.about_section .detail-box a {
  font-weight: 600;
  display: inline-block;
  padding: 0.625rem 2.8125rem;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: var(--btn-border-radius);
  transition: var(--transition-smooth);
  border: none;
  margin-top: 0.9375rem;
  cursor: pointer;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about_section .detail-box a:hover {
  background-color: var(--primary-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 190, 51, 0.3);
}

/* BOOK SECTION */
.book_section {
  background: #191820;
  padding: 80px 0;
  min-height: 100vh;
}

.heading_container h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.heading_container p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

.profile_card {
  background: #2d3748;
  border-radius: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.profile_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.profile_image {
  display: inline-block;
  margin: 0 auto;
}

.profile_image img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fbbf24;
  box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.profile_info h5 {
  color: white;
  font-weight: bold;
  font-size: 1.3rem;
}

.profile_info p {
  color: #fbbf24;
  font-size: 1rem;
  font-weight: 600;
}

.profile_info small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  display: block;
}

.view_more_btn {
  background: #fbbf24;
  color: #222831;
  padding: 12px 40px;
  border-radius: 25px;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
  display: block;
  margin: 40px auto 0;
}

.view_more_btn:hover {
  background: #f59e0b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(251, 191, 36, 0.4);
}

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

.book_section .heading_container {
  margin-bottom: 1.5625rem;
}

.book_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 3.125rem;
  margin-bottom: 1.5625rem;
  padding-left: 1.5625rem;
  border: 1px solid #444;
  outline: none;
  color: var(--light-text);
  background-color: #333;
  border-radius: 12px;
  box-shadow: none;
  font-family: var(--font-body);
  font-weight: 400;
  transition: var(--transition-smooth);
}

.book_section .form_container .form-control::placeholder {
  color: #999;
}

.book_section .form_container .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 190, 51, 0.15);
  background: rgba(51, 51, 51, 0.9);
}

.book_section .form_container button {
  font-weight: 600;
  margin-top: 0.9375rem;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.625rem 3.4375rem;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: var(--btn-border-radius);
  transition: var(--transition-smooth);
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 1px;
}

.book_section .form_container button:hover {
  background-color: var(--primary-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 190, 51, 0.3);
}

.book_section .map_container {
  width: 100%;
  height: 21.5625rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.book_section .map_container #googleMap {
  height: 100%;
  min-height: 100%;
  width: 100%;
}

/* CLIENT SECTION */
.client_section .heading_container {
  margin-bottom: 1.875rem;
}

.client_section .box {
  display: flex;
  flex-direction: column;
  margin: 0.9375rem;
  align-items: center;
}

.client_section .box .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7.1875rem;
  margin-top: 1.875rem;
}

.client_section .box .img-box img {
  border-radius: 100%;
  border: 5px solid var(--primary-color);
  position: relative;
}

.client_section .box .img-box::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  background-color: var(--primary-color);
  transform: rotate(45deg) translateX(-50%);
  z-index: -1;
}

.client_section .box .detail-box {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 1.5625rem 1.5625rem 0.9375rem 1.5625rem;
  border-radius: 12px;
  border-left: 5px solid var(--primary-color);
  box-shadow: var(--card-shadow);
  margin-top: 1.25rem;
  width: 100%;
}

.client_section .box .detail-box h6 {
  font-weight: 600;
  font-size: 1.125rem;
  margin: 0.9375rem 0 0.3125rem 0;
  font-family: var(--font-heading);
}

.client_section .box .detail-box p {
  margin-bottom: 0.625rem;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.9;
}

.client_section .owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  margin-top: 2.8125rem;
  padding: 0 0.9375rem;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
  width: 2.8125rem;
  height: 2.8125rem;
  background-color: var(--primary-color);
  color: var(--dark-text);
  outline: none;
  font-size: 1.25rem;
  margin: 0 0.3125rem;
  border-radius: 100%;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.client_section .owl-carousel .owl-nav .owl-prev:hover,
.client_section .owl-carousel .owl-nav .owl-next:hover {
  background-color: var(--primary-hover-color);
  transform: scale(1.1);
}

/* CONTACT SECTION */
.contact_section .heading_container {
  margin-bottom: 2.8125rem;
}

.contact_section .form_container .form-group {
  margin-bottom: 1.5625rem;
}

.contact_section .form_container input,
.contact_section .form_container textarea {
  width: 100%;
  border: none;
  height: 3.125rem;
  padding-left: 1.5625rem;
  background-color: #333;
  border: 1px solid #444;
  outline: none;
  color: var(--light-text);
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 400;
  transition: var(--transition-smooth);
}

.contact_section .form_container input::placeholder,
.contact_section .form_container textarea::placeholder {
  color: #999;
}

.contact_section .form_container input:focus,
.contact_section .form_container textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 190, 51, 0.15);
  background: rgba(51, 51, 51, 0.9);
}

.contact_section .form_container input.message-box {
  height: 7.5rem;
  padding-top: 1rem;
}

.contact_section .form_container .btn-box {
  display: flex;
  justify-content: center;
}

.contact_section .form_container button {
  font-weight: 600;
  margin-top: 0.625rem;
  border: none;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.625rem 3.4375rem;
  background-color: var(--primary-color);
  color: var(--dark-text);
  border-radius: var(--btn-border-radius);
  transition: var(--transition-smooth);
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 1px;
}

.contact_section .form_container button:hover {
  background-color: var(--primary-hover-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 190, 51, 0.3);
}

/* FOOTER SECTION */
.footer_section {
  background-color: var(--dark-bg);
  color: var(--light-text);
  padding: 5rem 0 2.5rem 0;
  text-align: center;
  position: relative;
}

.footer_section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer_section h4 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.footer_section p {
  color: #dbdbdb;
  font-weight: 400;
  opacity: 0.85;
}

.footer_section .footer-col {
  margin-bottom: 1.875rem;
}

.footer_section .footer_contact .contact_link_box {
  display: flex;
  flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
  margin: 0.3125rem 0;
  color: var(--light-text);
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer_section .footer_contact .contact_link_box a i {
  margin-right: 0.3125rem;
}

.footer_section .footer_contact .contact_link_box a:hover {
  color: var(--primary-color);
}

.footer_section .footer-logo {
  display: block;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--primary-color);
  font-family: var(--font-heading);
  margin-bottom: 1.25rem;
  background: linear-gradient(to right, var(--light-text), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer_section .footer_social {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
  margin-bottom: 0.625rem;
  gap: 12px;
}

.footer_section .footer_social a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark-bg);
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  background-color: var(--light-text);
  font-size: 1.125rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer_section .footer_social a:hover {
  background-color: var(--primary-color);
  color: var(--light-text);
  transform: translateY(-2px);
}

.footer_section .footer-info {
  text-align: center;
  margin-top: 1.5625rem;
}

.footer_section .footer-info p {
  color: var(--light-text);
  margin: 0;
  font-weight: 400;
}

.footer_section .footer-info p a {
  color: inherit;
}

/* SEARCH BAR GLOBAL (Original) */
.search-form {
  margin-left: 0.9375rem;
}

.search-input-group {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--light-text);
  border-radius: 25px;
  border: 2px solid var(--primary-color);
  padding: 0.3125rem 0.9375rem;
  width: 15.625rem;
  transition: all 0.3s ease;
}

.search-input-group:focus-within {
  box-shadow: 0 0 10px rgba(255, 190, 51, 0.2);
}

.search-icon {
  color: var(--primary-color);
  margin-right: 0.625rem;
  font-size: 0.875rem;
}

.search-input {
  border: none !important;
  background: transparent !important;
  padding: 0.3125rem 0 !important;
  flex: 1;
  font-size: 0.8125rem;
  color: var(--dark-text);
  font-family: var(--font-body);
  font-weight: 400;
}

.search-input:focus {
  box-shadow: none !important;
  outline: none !important;
}

.search-input::placeholder {
  color: #999;
}

.btn-search {
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0;
  margin-left: 0.3125rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.btn-search:hover {
  color: var(--primary-hover-color);
}

/* =========================================
   PERBAIKAN POSISI SEARCH BAR (MENU PAGE)
   ========================================= */

/* Container utama Flexbox untuk menengahkan konten */
.menu-search-container {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  margin-bottom: 2rem;
}

/* Wrapper pembatas lebar agar search bar tidak terlalu lebar di layar besar */
.menu-search-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Styling Search Bar agar lebar penuh mengikuti wrapper */
.search-input-group.custom-search {
  width: 100% !important;
  height: 55px;
  background-color: var(--dark-bg, #222831);
  border: 2px solid var(--primary-color, #ffbe33);
  border-radius: 50px;
  padding: 0 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}

.search-input-group.custom-search input {
  color: #fff;
  width: 100%;
}

.search-input-group.custom-search .search-input {
  color: var(--light-text);
  font-size: 1rem;
}

.search-input-group.custom-search .search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-input-group.custom-search .search-icon {
  font-size: 1.2rem;
}

/* Style untuk Kotak "Menu Tidak Ditemukan" */
.not-found-box {
  background: var(--dark-bg);
  border: 1px solid #333;
  border-radius: 16px;
  padding: 40px;
  color: var(--light-text);
  margin-top: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.not-found-box i {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* =================================================================
   ANIMATIONS – Premium Smooth & Elegant Effects (TANPA BLUR)
================================================================= */

/* Page load dengan opacity dan scale yang smooth */
@keyframes pageLoadFade {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  70% {
    opacity: 0.8;
    transform: translateY(5px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hero slide up dengan easing premium */
@keyframes heroSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }
  80% {
    transform: translateY(2px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Navbar slide down dengan fade */
@keyframes navSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
    background-color: rgba(34, 40, 49, 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    background-color: rgba(34, 40, 49, 0.7);
  }
}

/* Scale in dengan 3D effect tanpa blur */
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.8) rotateY(-5deg) rotateX(3deg);
  }
  60% {
    transform: scale(1.05) rotateY(1deg);
  }
  80% {
    transform: scale(0.98) rotateY(-0.5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0) rotateX(0);
  }
}

/* Fade in up yang smooth */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px) scale(1.02);
  }
  80% {
    transform: translateY(3px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Slide from left dengan overshoot */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px) scale(0.9);
  }
  70% {
    transform: translateX(10px) scale(1.02);
  }
  85% {
    transform: translateX(-3px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Slide from right dengan overshoot */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
  }
  70% {
    transform: translateX(-10px) scale(1.02);
  }
  85% {
    transform: translateX(3px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Premium floating animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(0.5deg);
  }
  50% {
    transform: translateY(-15px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-0.5deg);
  }
}

/* Premium pulse dengan shadow */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
                0 0 0 0 rgba(255, 190, 51, 0.1);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 0 15px rgba(255, 190, 51, 0);
    transform: scale(1.03);
  }
}

/* Glow effect yang lebih halus */
@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(255, 190, 51, 0.3));
    opacity: 0.8;
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(255, 190, 51, 0.6));
    opacity: 1;
  }
}

/* Shimmer effect tanpa blur */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Corner expand yang smooth */
@keyframes cornerExpand {
  0% {
    width: 0;
    height: 0;
    opacity: 0;
    transform: scale(0) rotate(-45deg);
  }
  60% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.7;
  }
  80% {
    transform: scale(0.95) rotate(-2deg);
  }
  100% {
    width: 40px;
    height: 40px;
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Scroll reveal tanpa blur */
@keyframes scrollReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  70% {
    opacity: 1;
    transform: translateY(-10px) scale(1.02);
  }
  85% {
    transform: translateY(3px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Zoom in rotasi tanpa blur */
@keyframes zoomInRotate {
  0% {
    opacity: 0;
    transform: scale(0.5) rotateY(-10deg) rotateX(5deg);
  }
  60% {
    transform: scale(1.08) rotateY(3deg);
  }
  80% {
    transform: scale(0.98) rotateY(-1deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0) rotateX(0);
  }
}

/* Bounce in yang lebih smooth */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-3deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.05) rotate(1deg);
  }
  70% {
    transform: scale(0.95) rotate(-0.5deg);
  }
  85% {
    transform: scale(1.02) rotate(0.3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Flip in yang halus */
@keyframes flipInX {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateX(-90deg) scale(0.9);
  }
  40% {
    transform: perspective(1000px) rotateX(20deg) scale(1.02);
  }
  60% {
    transform: perspective(1000px) rotateX(-10deg);
  }
  80% {
    transform: perspective(1000px) rotateX(5deg);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) scale(1);
  }
}

/* Slide up bounce yang smooth */
@keyframes slideUpBounce {
  0% {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-15px) scale(1.02);
  }
  75% {
    transform: translateY(5px) scale(0.99);
  }
  90% {
    transform: translateY(-3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Spinner yang clean */
@keyframes spinLoader {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

/* Morphing gradient untuk background */
@keyframes morphGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Text gradient shimmer */
@keyframes textShimmer {
  0% {
    background-position: -100% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Button hover pulse */
@keyframes buttonPulse {
  0% {
    box-shadow: 0 4px 15px rgba(255, 190, 51, 0.2);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 190, 51, 0.4);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 4px 15px rgba(255, 190, 51, 0.2);
    transform: scale(1);
  }
}

/* Card hover lift */
@keyframes cardLift {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: var(--card-shadow);
  }
  100% {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  }
}

/* =================================================================
   ANIMATION CLASSES - Enhanced tanpa blur
================================================================= */

/* Base animation classes */
.animate-on-scroll {
  opacity: 0;
  animation: scrollReveal 1.2s cubic-bezier(0.34, 1.56, 0.64, 1.4) forwards;
  animation-play-state: paused;
}

.animate-on-scroll.animated {
  animation-play-state: running;
}

.animate-fade-in {
  animation: pageLoadFade 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-zoom-in {
  animation: zoomInRotate 1s cubic-bezier(0.34, 1.56, 0.64, 1.4) forwards;
}

.animate-bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6) forwards;
}

.animate-flip-in {
  animation: flipInX 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) forwards;
}

.animate-slide-up {
  animation: slideUpBounce 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) forwards;
}

.animate-slide-left {
  animation: slideInLeft 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) forwards;
}

.animate-slide-right {
  animation: slideInRight 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) forwards;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-pulse {
  animation: pulse 3s ease-in-out infinite;
}

.animate-glow {
  animation: glow 3s ease-in-out infinite;
}

.animate-shimmer {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* Hover animations */
.hover-lift {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
  animation: cardLift 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hover-pulse:hover {
  animation: buttonPulse 0.6s ease-in-out;
}

/* Staggered delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }
.stagger-9 { animation-delay: 0.9s; }
.stagger-10 { animation-delay: 1s; }

/* Enhanced page loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--body-bg) 0%, #0f1419 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: pageLoadFade 0.6s ease-out 1.8s forwards reverse;
  pointer-events: none;
  animation: morphGradient 8s ease-in-out infinite;
  background-size: 300% 300%;
}

.page-loader::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid rgba(255, 190, 51, 0.1);
  border-radius: 50%;
  animation: pulse 2.5s ease-in-out infinite;
}

.page-loader::after {
  content: "";
  width: 80px;
  height: 80px;
  border: 4px solid transparent;
  border-top-color: var(--primary-color);
  border-right-color: rgba(255, 190, 51, 0.8);
  border-bottom-color: rgba(255, 190, 51, 0.4);
  border-left-color: rgba(255, 190, 51, 0.2);
  border-radius: 50%;
  animation: spinLoader 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

/* Text gradient animation */
.text-gradient-animate {
  background: linear-gradient(
    90deg,
    var(--light-text) 0%,
    var(--primary-color) 25%,
    var(--light-text) 50%,
    var(--primary-color) 75%,
    var(--light-text) 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 3s linear infinite;
}

/* Enhanced business card animations */
.business-card {
  animation: zoomInRotate 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) forwards,
             pulse 4s ease-in-out 1.2s infinite;
  transform-origin: center center;
}

.business-card::before {
  animation: shimmer 4s linear infinite;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 190, 51, 0.15) 25%,
    rgba(255, 190, 51, 0.3) 50%,
    rgba(255, 190, 51, 0.15) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
}

.icon-box {
  animation: bounceIn 0.9s cubic-bezier(0.68, -0.6, 0.32, 1.6) 0.4s backwards,
             float 6s ease-in-out 1.5s infinite;
  transform-origin: center center;
}

.icon-box i {
  animation: glow 3.5s ease-in-out 1s infinite;
  display: inline-block;
}

.card-title {
  animation: slideInRight 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) 0.5s backwards;
}

.card-description {
  animation: fadeInUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) 0.7s backwards;
}

.corner-accent {
  animation: cornerExpand 0.8s cubic-bezier(0.68, -0.6, 0.32, 1.6) backwards;
}

.corner-accent.top-left {
  animation-delay: 0.8s;
}

.corner-accent.bottom-right {
  animation-delay: 0.9s;
}

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

/* Responsive animations */
@media (max-width: 768px) {
  .animate-on-scroll,
  .animate-fade-in,
  .animate-zoom-in,
  .animate-bounce-in,
  .animate-flip-in,
  .animate-slide-up,
  .animate-slide-left,
  .animate-slide-right {
    animation-duration: 0.8s;
  }
  
  .slider_section .detail-box {
    animation: heroSlideUp 0.9s cubic-bezier(0.34, 1.56, 0.64, 1.4) 0.3s backwards;
  }
  
  .slider_section .img-box {
    animation: scaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1.4) 0.5s backwards;
  }
  
  .header_section {
    animation: navSlideDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
}

/* Tambahan efek untuk card hover */
.food_section .box,
.offer_section .box {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.food_section .box:hover,
.offer_section .box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(255, 190, 51, 0.1);
}

/* Efek khusus untuk tombol */
.btn-animate {
  position: relative;
  overflow: hidden;
}

.btn-animate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-animate:hover::before {
  left: 100%;
}

/* Loading spinner tambahan */
.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 190, 51, 0.1);
  border-top: 3px solid var(--primary-color);
  border-radius: 50%;
  animation: spinLoader 1s linear infinite;
}