:root {
  --primary-bg: #0b1a18;
  --accent-color: #c19b60;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --font-main: "Outfit", sans-serif;
}

body {
  font-family: var(--font-main);
  background-color: var(--primary-bg);
  color: var(--text-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-main);
  font-weight: 800;
  font-style: normal;
}

.scroll-smooth {
  scroll-behavior: smooth;
}

/* ===== Header css Start ===== */
/* ===== Imperial Header & Mobile Menu Redesign ===== */
header {
  z-index: 1050;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: transparent;
}

header.sticky-header {
  background: rgba(11, 26, 24, 0.98);
  backdrop-filter: blur(15px);
  padding: 8px 0 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-logo {
  height: 55px;
  width: auto;
  transition: all 0.4s ease;
}

.sticky-header .header-logo {
  height: 45px;
}

/* Custom Hamburger Icon */
.custom-hamburger {
  width: 35px;
  height: 24px;
  position: relative;
  cursor: pointer;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  background: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Hamburger Animation when Navbar is Opened */
.custom-hamburger[aria-expanded="true"] .hamburger-line.top {
  transform: translateY(11px) rotate(45deg);
}
.custom-hamburger[aria-expanded="true"] .hamburger-line.middle {
  opacity: 0;
  transform: translateX(-10px);
}
.custom-hamburger[aria-expanded="true"] .hamburger-line.bottom {
  transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menu Styles */
@media (max-width: 991px) {
  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0b1a18;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(-100%);
  }

  .navbar-collapse::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: url("../images/logo.jpg") no-repeat center;
    background-size: contain;
    opacity: 0.05;
    z-index: -1;
    filter: grayscale(1) brightness(2);
  }

  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-nav {
    text-align: center;
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
  }

  .navbar-collapse.show .nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .navbar-collapse.show .nav-item:nth-child(1) {
    transition-delay: 0.1s;
  }
  .navbar-collapse.show .nav-item:nth-child(2) {
    transition-delay: 0.2s;
  }
  .navbar-collapse.show .nav-item:nth-child(3) {
    transition-delay: 0.3s;
  }
  .navbar-collapse.show .nav-item:nth-child(4) {
    transition-delay: 0.4s;
  }

  .nav-link {
    font-size: 32px !important;
    font-weight: 300 !important;
    letter-spacing: 4px !important;
    color: #fff !important;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
  }

  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.4s ease;
    transform: translateX(-50%);
  }

  .nav-link:hover::after {
    width: 60px;
  }

  .nav-link:hover {
    color: var(--accent-color) !important;
  }

  /* Ensure logo is visible over menu */
  .navbar-brand {
    position: relative;
    z-index: 1010;
  }
  .custom-hamburger {
    position: relative;
    z-index: 1010;
  }

  header {
    background: #0b1a18 !important;
    border-bottom: 1px solid rgba(193, 155, 96, 0.2);
  }
}

.nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white) !important;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 10px 15px !important;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.btn-book {
  background-color: var(--accent-color);
  color: #0b1a18;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid var(--accent-color);
}

.btn-book:hover {
  background-color: transparent;
  color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(193, 155, 96, 0.2);
}

/* ===== Header css End ===== */

/* ===== General Hero Section Redesign ===== */
.hero-wrapper {
  padding-top: 120px;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-content-top {
  max-width: 800px;
  margin-bottom: 50px;
  z-index: 5;
}

.hero-content-top h1 {
  font-size: 72px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #fff;
}

.hero-content-top p {
  font-size: 18px;
  color: var(--text-muted);
}

.hero-content-top p span {
  color: var(--accent-color);
}

.hero-pill-container {
  width: 90%;
  max-width: 1000px;
  height: 450px;
  border: 2px solid var(--accent-color);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  margin-bottom: 50px;
  z-index: 5;
}

.hero-pill-container .carousel,
.hero-pill-container .carousel-inner,
.hero-pill-container .carousel-item {
  height: 100%;
}

.hero-pill-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-socials {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  z-index: 10;
}

.side-socials::before,
.side-socials::after {
  content: "";
  width: 1px;
  height: 50px;
  background: var(--text-muted);
}

.side-socials a {
  color: var(--text-muted);
  font-size: 12px;
  text-decoration: none;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.side-socials a:hover {
  color: var(--accent-color);
}

.side-phone {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  font-size: 14px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 15px;
}

.side-phone::after {
  content: "";
  width: 1px;
  height: 50px;
  background: var(--text-muted);
}

.hero-bottom-info {
  display: flex;
  gap: 50px;
  font-size: 14px;
  color: var(--text-muted);
  z-index: 5;
}

.hero-bottom-info span {
  color: var(--accent-color);
  font-weight: 600;
}

/* Wavy lines background pattern */
.hero-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='waves' width='100' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 10 Q 25 20, 50 10 T 100 10' stroke='rgba(193, 155, 96, 0.05)' fill='transparent' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23waves)'/%3E%3C/svg%3E");
  background-size: 400px 100px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

/* Add a darker overlay at the bottom of hero */
.hero-wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--primary-bg), transparent);
  z-index: 2;
}

.btn-hero-group {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.btn-hero {
  padding: 15px 40px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.btn-hero-primary {
  background-color: var(--accent-color);
  color: #000;
}

.btn-hero-outline {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-hero:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.offer-text-side {
  position: absolute;
  top: 60%;
  right: 5%;
  max-width: 150px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  z-index: 10;
}

/* Slider Overrides */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 30px;
  z-index: 10;
}
.carousel-control-next {
  right: 30px;
  z-index: 10;
}

.content_wrapper h2 {
  font-size: 18px;
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.carousel-control-wrapper {
  /* position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;  */
  position: relative;
}

.carousel-indicators {
  z-index: 100;
}

/* ===== About us css Redesign ===== */
#aboutUs {
  background-color: var(--primary-bg);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

#aboutUs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3Cpattern id='waves-about' width='100' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M0 10 Q 25 20, 50 10 T 100 10' stroke='rgba(193, 155, 96, 0.03)' fill='transparent' stroke-width='1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100%25' height='100%25' fill='url(%23waves-about)'/%3E%3C/svg%3E");
  background-size: 400px 100px;
  opacity: 1;
  pointer-events: none;
}

.about-subtitle {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.about-title {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-text {
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.about-image-collage {
  position: relative;
  padding: 40px;
}

.main-about-img {
  width: 85%;
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(193, 155, 96, 0.2);
}

.floating-about-img {
  position: absolute;
  width: 50%;
  bottom: -20px;
  right: 0;
  z-index: 3;
  border-radius: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  border: 2px solid var(--accent-color);
  transition: transform 0.4s ease;
}

.about-image-collage:hover .floating-about-img {
  transform: translate(-10px, -10px);
}

.about-experience-badge {
  position: absolute;
  top: 0;
  right: 20px;
  background-color: var(--accent-color);
  color: #000;
  padding: 25px;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  box-shadow: 0 10px 30px rgba(193, 155, 96, 0.3);
}

.about-experience-badge span {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.about-experience-badge p {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}

.about-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
  font-weight: 600;
}

.about-feature-item i {
  color: var(--accent-color);
  font-size: 20px;
}

.about-content-creative {
  padding-left: 50px;
}

@media (max-width: 991px) {
  #aboutUs {
    padding: 80px 0;
  }
  .about-content-creative {
    padding-left: 0;
    margin-top: 60px;
    text-align: center;
  }
  .about-feature-list {
    justify-items: center;
  }
  .about-title {
    font-size: 36px;
  }
  .about-image-collage {
    padding: 20px;
  }
}

/* ====== Luxury Mosaic Gallery CSS ====== */
#luxuryGallery {
  background-color: var(--primary-bg);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

#luxuryGallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(193, 155, 96, 0.03) 0%,
      transparent 20%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(193, 155, 96, 0.03) 0%,
      transparent 20%
    );
  pointer-events: none;
}

.gallery-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(193, 155, 96, 0.1);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  background-color: #000;
}

/* Artistic Zen Shapes */
.gallery-item.shape-1 {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 120px 20px 120px 20px;
}

.gallery-item.shape-2 {
  grid-column: span 2;
  grid-row: span 3;
  border-radius: 20px 150px 20px 150px;
}

.gallery-item.shape-3 {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 100px 100px 20px 20px;
}

.gallery-item.shape-4 {
  grid-column: span 2;
  grid-row: span 1;
  border-radius: 20px 20px 80px 80px;
}

.gallery-item.shape-5 {
  grid-column: span 1;
  grid-row: span 2;
  border-radius: 50% 50% 10px 10px;
}

.gallery-item.shape-6 {
  grid-column: span 3;
  grid-row: span 2;
  border-radius: 10px 180px 10px 180px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  filter: saturate(0.8);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(11, 26, 24, 0.6),
    rgba(11, 26, 24, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.gallery-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
  z-index: 10;
  transform: translateY(-8px);
}

.gallery-item:hover img {
  transform: scale(1.15) rotate(1deg);
  filter: saturate(1.2);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon-view {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .gallery-icon-view {
  transform: scale(1);
}

@media (max-width: 1400px) {
  .gallery-mosaic-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 991px) {
  .gallery-mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item.shape-1,
  .gallery-item.shape-2,
  .gallery-item.shape-3,
  .gallery-item.shape-4,
  .gallery-item.shape-5,
  .gallery-item.shape-6 {
    grid-column: span 1;
    grid-row: span 1;
    border-radius: 15px 40px 15px 40px;
  }
}

/* ===== Gallery css start ===== */
.section-title {
  background-color: #0a4363;
}
.gallery-slider .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
}
.gallery-slider .owl-carousel .owl-nav button.owl-next,
.gallery-slider .owl-carousel .owl-nav button.owl-prev {
  background: #0a4363;
  border-radius: 0;
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  color: #fff;
  display: inline-block;
  font-size: 16px;
  margin: 0 0 0 1px;
  outline: none;
  padding: 0 !important;
  width: 40px;
  height: 40px;
}

/* ===== Footer css Start ===== */

footer {
  /* background-color: #de671a; */
  color: #fff;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

footer .footer-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

footer h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #fff;
}

footer h5 {
  font-size: 32px;
}

footer .footer_wp {
  position: relative;
}

footer .footer_wp i {
  /* position: absolute; */
  font-size: 20px;
  margin-right: 10px;
  color: #fff;
  margin-top: 3px;
}

footer .footer_wp .footer-social i {
  font-size: 30px;
}

footer a {
  color: rgba(255, 255, 255);
}

footer a:focus,
footer a:hover {
  color: #0a4363;
  text-decoration: none;
}

footer .follow_us a:focus,
footer .follow_us a:hover {
  color: #ff770f;
  text-decoration: none;
}

footer .follow_us a:hover svg {
  fill: #ff770f;
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

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

.follow_us ul li {
  display: inline-block;
  margin: 0 8px;
  font-size: 14px;
}

footer hr {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 15px 0 15px 0;
}

footer .footer-logo {
  max-width: 100px;
}

.follow_us ul li a img {
  width: 30px;
  height: 30px;
}

.hygine-rating {
  background: #dbdd6d;
  border: 1px solid #333;
  border-radius: 4px;
  font-size: 14px;
  line-height: 14px;
  padding: 15px;
}

/* ====== Premium Announcement Bar Redesign ====== */
.bottom_notice_bar {
  z-index: 2000;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0b1a18;
  color: #fff;
  border-top: 2px solid var(--accent-color);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  padding: 12px 0;
  font-family: "Outfit", sans-serif;
}

.bottom_notice_bar::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
  box-shadow: 0 0 15px var(--accent-color);
}

.top_notice {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  gap: 20px;
}

.notice_heading {
  background: var(--accent-color);
  color: #0b1a18;
  padding: 4px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(193, 155, 96, 0.3);
}

.notice_text {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.notice_text marquee {
  vertical-align: middle;
}

@media (max-width: 767px) {
  .top_notice {
    padding: 0 15px;
    gap: 10px;
  }
  .notice_heading {
    padding: 3px 10px;
    font-size: 9px;
  }
  .notice_text {
    font-size: 12px;
  }
}

header.has-notice {
  top: 40px; /* Adjust based on notice bar height */
}

header.sticky-header.has-notice {
  top: 40px;
}

.back-to-top {
  position: fixed;
  bottom: 45px;
  right: 25px;
  display: none;
  background-color: #de671a;
  color: #fff;
  z-index: 1000;
}

.back-to-top.notice-active {
  bottom: 65px !important;
}

footer.notice-active {
  margin-bottom: 40px !important;
}

.back-to-top:hover,
.back-to-top:focus {
  background-color: #de671a;
  color: #fff;
}

/* Common Classes  */
hr {
  border-color: #fff;
}
.bg-orange {
  background-color: #c19b60;
}

.text-orange {
  color: #c19b60;
}

.bg-darkBlue {
  background-color: #0b1a18;
}

.text-darkBlue {
  color: #0b1a18;
}

.bg-offwhite {
  background-color: rgb(255, 255, 255, 0.8);
}

.btn-custom {
  background: linear-gradient(125deg, #fff 51%, #c19b60 51%);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  background-size: 280% 100% !important;
  background-repeat: no-repeat !important;
  background-position: right bottom !important;
  transition: background-position 0.3s ease-out;
}

.btn-custom:hover {
  color: #c19b60;
  background-position: left bottom !important;
  transition: background-position 0.3s ease-out;
  text-decoration: none;
}

.btn-custom-2 {
  background: linear-gradient(125deg, #c19b60 51%, #fff 51%);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  color: #c19b60;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  background-size: 280% 100% !important;
  background-repeat: no-repeat !important;
  background-position: right bottom !important;
  transition: background-position 0.3s ease-out;
}
.btn-custom-2:hover {
  color: #fff;
  background-position: left bottom !important;
  transition: background-position 0.3s ease-out;
  text-decoration: none;
}

.btn-custom-3 {
  background: linear-gradient(125deg, #c19b60 51%, #fff 51%);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  color: #0b1a18;
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
  background-size: 280% 100% !important;
  background-repeat: no-repeat !important;
  background-position: right bottom !important;
  transition: background-position 0.3s ease-out;
}
.btn-custom-3:hover {
  color: #fff;
  background-position: left bottom !important;
  transition: background-position 0.3s ease-out;
  text-decoration: none;
}

.d-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
/* .menu-content-wrapper{
  columns: 2;
  column-gap: 1rem;
}
.column {
  display: inline-block;
  width: 100%;
} */

/* ===== Footer css End ===== */

.terms-conditions-section {
  color: #fff;
  padding-top: 180px;
  padding-bottom: 40px;
}

.terms-conditions-section h2 {
  font-size: 1.6rem;
}

#offerModal .modal-dialog {
  max-width: 900px;
}

.popup_img {
  width: 80%;
  height: auto;
}

.modal-body {
  background-color: #fff;
}

/* our menu buttons */
.btn-menu {
  background: linear-gradient(125deg, #fff 51%, #0a4363 51%);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  background-size: 280% 100% !important;
  background-repeat: no-repeat !important;
  background-position: right bottom !important;
  transition:
    background-position 0.3s ease-out,
    color 0.3s ease-out;
  display: inline-block;
  border-radius: 6px;
  font-weight: 600;
}

.btn-menu:hover {
  color: white;
  background: linear-gradient(125deg, #0a4363 51%, #fff 51%);
  background-position: left bottom !important;
  text-decoration: none;
}

.popup_text {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  width: 100%;
  padding: 10px;
  bottom: 0;
}
/* Responsive Adjustments for Hero Section */
@media (max-width: 991px) {
  .hero-wrapper {
    padding-top: 100px;
    min-height: auto;
    padding-bottom: 50px;
  }

  .hero-content-top h1 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .hero-content-top p {
    font-size: 16px;
  }

  .hero-pill-container {
    height: 280px;
    border-radius: 40px;
    width: 95%;
    margin-bottom: 30px;
  }

  .side-socials {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-direction: row !important;
    justify-content: center;
    margin-bottom: 30px;
    width: 100%;
  }

  .side-socials::before,
  .side-socials::after {
    display: none;
  }

  .side-socials a {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 14px;
    padding: 0 10px;
  }

  .side-phone {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    writing-mode: horizontal-tb;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
  }

  .side-phone::after {
    display: none;
  }

  .hero-bottom-info {
    position: relative;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    margin-top: 10px;
    padding: 0 15px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }

  .btn-hero {
    padding: 12px 25px;
    font-size: 13px;
  }
}

/* ====== Popular Items Arched Redesign CSS ====== */
#popular-items {
  background-color: var(--primary-bg);
  position: relative;
  padding: 120px 0;
}

.popular-card-outline {
  position: relative;
  border: 1px solid rgba(193, 155, 96, 0.2);
  border-radius: 200px 200px 10px 10px;
  padding: 60px 30px 40px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.popular-card-outline:hover {
  border-color: var(--accent-color);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.02);
}

.popular-category {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-bg);
  color: var(--accent-color);
  padding: 5px 25px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  z-index: 5;
  white-space: nowrap;
}

.popular-img-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 35px;
  border: 4px solid rgba(193, 155, 96, 0.1);
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.popular-card-outline:hover .popular-img-circle {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.popular-img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popular-card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.popular-item-name {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.popular-item-info {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  height: 40px;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.popular-item-price {
  margin-top: auto;
  color: var(--accent-color);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.btn-order-outline {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid rgba(193, 155, 96, 0.3);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.btn-order-outline:hover {
  background: var(--accent-color);
  color: #000;
  border-color: var(--accent-color);
}

/* Updated Swiper Nav */
.popular-swiper-next,
.popular-swiper-prev {
  color: var(--accent-color) !important;
  background: rgba(255, 255, 255, 0.05);
  width: 45px !important;
  height: 45px !important;
  border-radius: 50%;
  border: 1px solid rgba(193, 155, 96, 0.2);
  top: 55%;
}

.popular-swiper-next::after,
.popular-swiper-prev::after {
  font-size: 16px !important;
}

.popularSwiper {
  padding-bottom: 70px !important;
}

.popular-pagination {
  bottom: 15px !important;
}

.popular-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color) !important;
  opacity: 1;
}

@media (max-width: 991px) {
  .popular-img-circle {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 575px) {
  .popular-card-outline {
    padding: 50px 20px 30px;
  }
}

/* ====== Chef's Signature Section CSS ====== */
#chefSignature {
  background-color: var(--primary-bg);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.signature-image-wrapper {
  position: relative;
  padding: 40px;
}

.signature-img-arch-large {
  width: 90%;
  height: 600px;
  border-radius: 300px 300px 20px 20px;
  overflow: hidden;
  border: 1px solid rgba(193, 155, 96, 0.15);
  position: relative;
  z-index: 1;
}

.signature-img-arch-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.signature-img-floating {
  position: absolute;
  width: 50%;
  height: auto;
  aspect-ratio: 1/1;
  bottom: 0px;
  right: 0px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--accent-color);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  transition: transform 0.5s ease;
}

.signature-img-floating img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature-image-wrapper:hover .signature-img-arch-large img {
  transform: scale(1.05);
}

.signature-image-wrapper:hover .signature-img-floating {
  transform: translate(-10px, -10px);
}

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

.chef-quote-icon {
  opacity: 0.3;
  margin-bottom: 20px;
}

#chefSignature::after {
  content: "HAWELI";
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: 0;
  letter-spacing: 20px;
}

@media (max-width: 991px) {
  #chefSignature {
    padding: 80px 0;
  }
  .signature-img-arch-large {
    height: 450px;
    margin: 0 auto;
    width: 100%;
  }
  .signature-img-floating {
    width: 45%;
    bottom: -20px;
    right: -10px;
  }
  .signature-content {
    margin-top: 60px;
    text-align: center;
  }
  .signature-badge {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  .chef-quote-icon {
    margin-right: 0 !important;
  }
}

/* ====== Premium Contact Section Redesign ====== */
#contact {
  background-color: var(--primary-bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 90% 10%,
    rgba(193, 155, 96, 0.05) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.contact-visual-wrapper {
  position: relative;
  padding: 20px;
}

.contact-map-frame {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 300px 20px 300px 20px; /* Dramatic Arches */
  overflow: hidden;
  border: 1px solid rgba(193, 155, 96, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.contact-map-frame:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

.contact-map-frame iframe {
  filter: grayscale(1) invert(0.9) contrast(1.2); /* Dark Map Mode */
  opacity: 0.8;
  transition: all 0.5s ease;
}

.contact-map-frame:hover iframe {
  filter: grayscale(0.5) invert(0.1);
  opacity: 1;
}

.contact-form-container {
  padding: 60px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(193, 155, 96, 0.1);
  border-radius: 20px 200px 20px 200px; /* Counter Arches */
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 2;
}

.contact-form-container::after {
  content: "LOCATION";
  position: absolute;
  bottom: 20px;
  right: -40px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  transform: rotate(-90deg);
  pointer-events: none;
  z-index: -1;
}

.contact-input-group {
  position: relative;
  margin-bottom: 35px;
}

.contact-input-group label {
  display: block;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.contact-form-container .form-control {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(193, 155, 96, 0.2) !important;
  border-radius: 0 !important;
  color: #fff !important;
  padding: 10px 0 !important;
  transition: all 0.3s ease !important;
  font-family: "Outfit", sans-serif !important;
}

.contact-form-container .form-control:focus {
  background: transparent !important;
  box-shadow: none !important;
  border-color: var(--accent-color) !important;
  color: #fff !important;
}

.contact-form-container .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.contact-form-container textarea.form-control {
  min-height: 120px !important;
}

.btn-contact-submit {
  width: 100%;
  padding: 20px;
  background: var(--accent-color);
  color: #000;
  border: none;
  border-radius: 5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-top: 20px;
}

.btn-contact-submit:hover {
  background: #fff;
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(193, 155, 96, 0.3);
}

.contact-success-card {
  text-align: center;
  padding: 40px;
}

/* Success Message Popup Animation */
@keyframes internalPopup {
  0% {
    transform: scale(0.8) translateY(20px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.contact-success-card {
  animation: internalPopup 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  text-align: center;
  padding: 40px;
  background: rgba(193, 155, 96, 0.03);
  border-radius: inherit;
  backdrop-filter: blur(5px);
}

.contact-success-icon {
  width: 100px;
  height: 100px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1a18;
  font-size: 45px;
  margin-bottom: 30px;
  box-shadow: 0 20px 40px rgba(193, 155, 96, 0.3);
  position: relative;
}

.contact-success-icon::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulseWidth 2s infinite;
}

@keyframes pulseWidth {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .contact-form-container {
    padding: 40px;
    border-radius: 20px 100px 20px 100px;
    margin-bottom: 50px;
  }
  .contact-map-frame {
    height: 400px;
    border-radius: 100px 20px 100px 20px;
  }
}

@media (max-width: 575px) {
  .contact-form-container {
    padding: 30px 20px;
  }
}

/* ====== Premium Global Footer Redesign ====== */
.footer-premium {
  background-color: #000;
  padding: 100px 0 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.footer-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-color),
    transparent
  );
}

.footer-main-arch {
  text-align: center;
  margin-bottom: 80px;
}

.footer-logo-arch {
  width: 180px;
  height: 180px;
  background: #0b1a18;
  border-radius: 50%;
  border: 1px solid rgba(193, 155, 96, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  padding: 20px;
  transition: all 0.5s ease;
  position: relative;
}

.footer-logo-arch:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(193, 155, 96, 0.2);
}

.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  background: rgba(11, 26, 24, 0.5);
  border-radius: 100px 100px 0 0;
  padding: 80px 60px;
  border: 1px solid rgba(193, 155, 96, 0.1);
  border-bottom: none;
}

.footer-col-title {
  color: var(--accent-color);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
  display: block;
}

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

.footer-link-list li {
  margin-bottom: 12px;
}

.footer-link-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-link-list a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-time-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-time-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  border-bottom: 1px dashed rgba(193, 155, 96, 0.1);
  padding-bottom: 5px;
}

.footer-social-wrap {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.footer-social-wrap a {
  width: 40px;
  height: 40px;
  background: rgba(193, 155, 96, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  transition: all 0.4s ease;
}

.footer-social-wrap a:hover {
  background: var(--accent-color);
  color: #0b1a18;
  transform: translateY(-5px);
}

.footer-bottom-bar {
  background: #0b1a18;
  padding: 30px 0;
  border-top: 1px solid rgba(193, 155, 96, 0.1);
}

.footer-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
}

.footer-copyright a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.footer-copyright a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .footer-info-grid {
    grid-template-columns: 1fr;
    padding: 60px 40px;
    border-radius: 50px 50px 0 0;
    gap: 50px;
    text-align: center;
  }
  .footer-time-list li {
    justify-content: center;
    gap: 20px;
  }
}
/* ====== Premium Back to Top Button Redesign ====== */
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 55px;
  height: 55px;
  background: #0b1a18;
  color: var(--accent-color);
  border: 1px solid rgba(193, 155, 96, 0.3);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 2500;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  animation: bounceInUp 0.6s both;
}

.back-to-top:hover {
  background: var(--accent-color);
  color: #0b1a18;
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(193, 155, 96, 0.3);
}

/* Adjust position when Notice Bar is active */
.back-to-top.notice-active {
  bottom: 85px !important;
}

@keyframes bounceInUp {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  60% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .back-to-top {
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .back-to-top.notice-active {
    bottom: 75px !important;
  }
}
