:root {
  --primary-bg: #0a0a0a;
  --accent-color: #d4af37;
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.65);
  --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(10, 10, 10, 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;
}

@media (min-width: 992px) {
  .custom-hamburger {
    display: 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: #0a0a0a;
    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.png") 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: #0a0a0a !important;
    border-bottom: 1px solid rgba(212, 175, 55, 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: #0a0a0a;
  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(212, 175, 55, 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;
}

.premium-hero-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 36px;
  font-weight: 300;
  color: var(--accent-color);
  font-family: "Great Vibes", cursive;
  letter-spacing: 2px;
  margin-bottom: 2px;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  font-style: italic;
}

.hero-brandname {
  font-size: 64px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fcf6ba, #aa771c);
  -webkit-background-clip: text;
  color: transparent; /* Metallic gold gradient */
  animation: shine 4s linear infinite;
}

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

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

.hero-offset-slider {
  position: relative;
  width: 90%;
  max-width: 1100px;
  height: 480px;
  margin-bottom: 70px;
  z-index: 5;
}

.hero-offset-slider .slider-frame {
  position: absolute;
  top: 25px;
  left: 25px;
  right: -25px;
  bottom: -25px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  z-index: 1;
  background-image: radial-gradient(rgba(212, 175, 55, 0.15) 1px, transparent 1px);
  background-size: 20px 20px;
}

.hero-offset-slider .slider-frame::before,
.hero-offset-slider .slider-frame::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border-color: var(--accent-color);
  border-style: solid;
  border-radius: 12px;
}

.hero-offset-slider .slider-frame::before {
  top: -1px;
  left: -1px;
  border-width: 2px 0 0 2px;
  border-bottom-right-radius: 0;
  box-shadow: -4px -4px 15px rgba(212, 175, 55, 0.2);
}

.hero-offset-slider .slider-frame::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 2px 2px 0;
  border-top-left-radius: 0;
  box-shadow: 4px 4px 15px rgba(212, 175, 55, 0.2);
}

.hero-offset-slider .carousel-container {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero-offset-slider .carousel,
.hero-offset-slider .carousel-inner,
.hero-offset-slider .carousel-item {
  height: 100%;
}

.slide-image-wrapper {
  overflow: hidden;
}

.slide-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  transform: scale(1.02);
}

.carousel-item.active .slide-image-wrapper img {
  transform: scale(1.1);
}

.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(212, 175, 55, 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;
}

/* Premium Controls */
.premium-control {
  width: 60px;
  height: 60px;
  background: transparent !important;
  border-radius: 50% !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8 !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  transition: all 0.4s ease !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.premium-control .control-blur {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

.premium-control i {
  position: relative;
  z-index: 1;
  color: var(--accent-color);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.premium-control:hover {
  opacity: 1 !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3) !important;
}

.premium-control:hover i {
  transform: scale(1.2);
}

.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(212, 175, 55, 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;
}

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

.story-title {
  color: #fff;
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 40px;
  line-height: 1.2;
}

.premium-story-collage {
  position: relative;
  padding: 40px 20px;
}

.story-img-main-wrapper {
  width: 75%;
  margin-left: auto;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.story-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.story-img-float-wrapper {
  position: absolute;
  width: 50%;
  bottom: -5%;
  left: 0;
  z-index: 3;
  border-radius: 8px;
  border: 4px solid var(--primary-bg);
  background: var(--primary-bg);
  overflow: hidden;
}

.story-img-float {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

.story-experience-badge {
  position: absolute;
  top: 0;
  left: 10%;
  background-color: var(--accent-color);
  color: #000;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 4;
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.4);
}

.story-experience-badge .years {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
}

.story-experience-badge .text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
}

.story-content-box {
  padding-left: 50px;
}

.story-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 20px;
  margin-bottom: 50px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  width: 25px;
  height: 25px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  color: #000;
  font-size: 16px;
  font-weight: bold;
}

.feature-text {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.story-btn-group {
  display: flex;
  gap: 20px;
}

.btn-story {
  padding: 12px 35px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-story-solid {
  background: var(--accent-color);
  color: #000;
  border: 1px solid var(--accent-color);
}

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

.btn-story:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-story-solid:hover {
  background: transparent;
  color: var(--accent-color);
}

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

@media (max-width: 991px) {
  #aboutUs {
    padding: 80px 0;
  }
  .story-content-box {
    padding-left: 0;
    margin-top: 60px;
    text-align: center;
  }
  .story-feature-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto 50px;
    justify-items: start;
  }
  .story-title {
    font-size: 34px;
    margin-bottom: 30px;
  }
  .story-btn-group {
    justify-content: center;
  }
  .premium-story-collage {
    padding: 20px;
  }
  .story-experience-badge {
    width: 110px;
    height: 110px;
    left: 0;
  }
  .story-experience-badge .years {
    font-size: 26px;
  }
  .story-experience-badge .text {
    font-size: 9px;
  }
}

/* ====== Premium Panoramic Gallery Slider CSS ====== */
.gallery-luxury-showcase {
  background-color: var(--primary-bg);
  padding: 100px 0;
  overflow: hidden;
}

.gallerySwiper {
  width: 100%;
  padding: 50px 0 100px !important;
}

.gallery-panoramic-item {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  filter: grayscale(0.2) brightness(0.8);
  transform: scale(0.9);
}

.gallerySwiper .swiper-slide-active {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.gallery-img-panoramic {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

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

.gallery-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: rgba(11, 26, 24, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  transform: translateY(100%);
  z-index: 5;
}

.swiper-slide-active .gallery-slide-overlay {
  opacity: 1;
  transform: translateY(0);
}

.btn-gallery-order {
  display: inline-block;
  background-color: var(--accent-color);
  color: #000;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none !important;
  font-size: 13px;
  transition: all 0.4s ease;
  border: 1px solid var(--accent-color);
}

.btn-gallery-order:hover {
  background-color: transparent;
  color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.gallery-controls-box {
  position: relative;
  max-width: 400px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.gallery-prev, .gallery-next {
  position: static !important;
  width: 50px !important;
  height: 50px !important;
  border: 1px solid rgba(212, 175, 55, 0.5) !important;
  border-radius: 50%;
  background: transparent !important;
  color: var(--accent-color) !important;
}

.gallery-prev:after, .gallery-next:after {
  font-size: 18px !important;
}

.gallery-prev:hover, .gallery-next:hover {
  background: var(--accent-color) !important;
  color: #000 !important;
  border-color: var(--accent-color) !important;
}

.gallery-pagination {
  position: static !important;
  width: auto !important;
}

.gallery-pagination .swiper-pagination-bullet {
  background: var(--accent-color) !important;
  opacity: 0.3;
}

.gallery-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 25px !important;
  border-radius: 10px !important;
}

@media (max-width: 768px) {
  .gallery-panoramic-item {
    height: 350px;
  }
  .gallery-slide-title {
    font-size: 22px;
  }
}

/* ===== Gallery css start ===== */
.section-title {
  background-color: var(--accent-color);
}
.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: var(--accent-color);
  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: var(--accent-color);
  text-decoration: none;
}

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

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

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: #0a0a0a;
  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(212, 175, 55, 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: var(--accent-color);
  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: var(--accent-color);
  color: #fff;
}

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

.text-orange {
  color: #d4af37;
}

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

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

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

.btn-custom {
  background: linear-gradient(125deg, #fff 51%, #d4af37 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: #d4af37;
  background-position: left bottom !important;
  transition: background-position 0.3s ease-out;
  text-decoration: none;
}

.btn-custom-2 {
  background: linear-gradient(125deg, #d4af37 51%, #fff 51%);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  color: #d4af37;
  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, #d4af37 51%, #fff 51%);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  cursor: pointer;
  color: #0a0a0a;
  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%, var(--accent-color) 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, var(--accent-color) 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-subtitle {
    font-size: 28px;
  }
  
  .hero-brandname {
    font-size: 45px;
  }

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

  .hero-offset-slider {
    width: 90%;
    height: 350px;
    margin-bottom: 40px;
  }
  
  .hero-offset-slider .slider-frame {
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
  }
  .hero-offset-slider .slider-frame::before,
  .hero-offset-slider .slider-frame::after {
    width: 40px;
    height: 40px;
  }

  .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(212, 175, 55, 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(212, 175, 55, 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(212, 175, 55, 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: 0px !important;
}

.popular-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3) !important;
  opacity: 1;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
}

.popular-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color) !important;
  transform: scale(1.3);
  box-shadow: 0 0 10px var(--accent-color);
}

@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 Redesign ====== */
#chefSignature.chef-signature-premium {
  background-color: var(--primary-bg);
  padding: 100px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ====== Unique Chef's Signature Composition ====== */
.signature-unique-composition {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 550px;
  margin: 0 auto;
}

.composition-bg-accent {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.composition-item {
  position: absolute;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.composition-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.item-main {
  top: 0;
  left: 10%;
  width: 70%;
  height: 85%;
  border-radius: 200px 50px 200px 50px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.item-secondary {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 50%;
  border-radius: 50px 200px 50px 200px;
  border: 8px solid var(--primary-bg);
  z-index: 3;
}

.item-tertiary {
  top: 20%;
  left: 0;
  width: 35%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  z-index: 4;
  padding: 5px;
  background: var(--primary-bg);
}

.item-tertiary img {
  border-radius: 50%;
}

.composition-decoration-ring {
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 110%;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  z-index: 1;
}

.composition-decoration-dots {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(var(--accent-color) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.3;
  z-index: 5;
}

.experience-badge-unique {
  position: absolute;
  bottom: 15%;
  left: 10%;
  background: var(--accent-color);
  color: #000;
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
  z-index: 6;
  border: 4px solid var(--primary-bg);
}

.experience-badge-unique .badge-num {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.experience-badge-unique .badge-label {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hover States */
.signature-unique-composition:hover .item-main {
  transform: translate(-10px, -10px);
}

.signature-unique-composition:hover .item-secondary {
  transform: translate(15px, 15px);
}

.signature-unique-composition:hover .item-tertiary {
  transform: scale(1.1) rotate(5deg);
}

.signature-unique-composition:hover .item-main img {
  transform: scale(1.1);
}

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

.premium-divider {
  width: 80px;
  height: 2px;
  background: var(--accent-color);
}

.signature-subtitle-gold {
  color: var(--accent-color);
  font-size: 14px;
  letter-spacing: 5px;
  font-weight: 700;
  margin-bottom: 20px;
}

.signature-title-display {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.text-accent {
  color: var(--accent-color);
}

.signature-description p {
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.8;
  font-weight: 300;
}

.chef-quote-block {
  position: relative;
  padding-left: 40px;
  border-left: 2px solid var(--accent-color);
  margin-top: 40px;
}

.quote-icon-gold {
  display: block;
  font-size: 40px;
  color: var(--accent-color);
  opacity: 0.5;
  margin-bottom: 10px;
}

.quote-text-italic {
  font-size: 24px;
  font-style: italic;
  color: #fff;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.4;
}

.chef-meta {
  margin-top: 15px;
}

.chef-name {
  color: var(--accent-color);
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 13px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  #chefSignature.chef-signature-premium {
    padding: 60px 0;
  }
  .signature-title-display {
    font-size: 42px;
  }
  .signature-unique-composition {
    height: 450px;
    max-width: 420px;
    margin-bottom: 40px;
  }
  .item-main {
    border-radius: 120px 30px 120px 30px;
  }
  .item-secondary {
    border-radius: 30px 120px 30px 120px;
    border-width: 5px;
  }
  .experience-badge-unique {
    width: 80px;
    height: 80px;
    bottom: 5%;
    left: 5%;
    padding: 10px;
  }
  .experience-badge-unique .badge-num {
    font-size: 20px;
  }
  .signature-description p {
    font-size: 16px;
  }
  .quote-text-italic {
    font-size: 18px;
  }
}

/* ====== 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(212, 175, 55, 0.05) 0%,
    transparent 40%
  );
  pointer-events: none;
}

/* ====== Luxury Concierge Contact Redesign ====== */
.luxury-contact-envelope {
  background-color: var(--primary-bg);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.luxury-contact-envelope::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.info-card-premium {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.4s ease;
  margin-bottom: 20px;
}

.info-card-premium:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: var(--accent-color);
  transform: translateX(10px);
}

.info-icon-gold {
  min-width: 50px;
  height: 50px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.info-text label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--accent-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.concierge-map-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.1);
  min-height: 250px;
}

.concierge-map-frame iframe {
  filter: grayscale(1) invert(0.9) contrast(1.2) brightness(0.8);
}

.luxury-form-container {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 60px;
  border-radius: 30px;
  backdrop-filter: blur(15px);
  position: relative;
}

.gold-gradient-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--accent-color), transparent);
}

.luxury-input-group {
  position: relative;
  margin-bottom: 20px;
}

.luxury-input-group .form-control {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 18px 20px !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
}

.luxury-input-group label {
  position: absolute;
  top: 18px;
  left: 20px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.luxury-input-group .form-control:focus ~ label,
.luxury-input-group .form-control:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 15px;
  font-size: 10px;
  color: var(--accent-color);
  background: var(--primary-bg);
  padding: 0 10px;
}

.luxury-input-group .form-control:focus {
  border-color: var(--accent-color) !important;
  background: rgba(212, 175, 55, 0.05) !important;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1) !important;
}

.text-area-group textarea {
  min-height: 150px !important;
  resize: none;
}

.btn-concierge-send {
  width: 100%;
  padding: 20px;
  background: var(--accent-color);
  border: none;
  border-radius: 15px;
  color: #000;
  font-weight: 800;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-concierge-send:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
  background: #fff;
}

.success-ring-gold {
  width: 80px;
  height: 80px;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 40px;
  color: var(--accent-color);
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@media (max-width: 991px) {
  .luxury-form-container {
    padding: 40px 20px;
  }
}


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

.footer-main-arch {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 10;
}

.footer-hero-brand-box {
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

.logo-heritage-frame {
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.5s ease;
}

.footer-hero-brand-box:hover .logo-heritage-frame {
  border-color: var(--accent-color);
  transform: scale(1.05) rotate(5deg);
}

.footer-main-logo {
  max-width: 110px;
  border-radius: 50%;
}

.heritage-badge-gold {
  position: absolute;
  bottom: 0;
  right: -10px;
  background: var(--accent-color);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-branding-title {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 300;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 20px;
}

.footer-heritage-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.gold-dash {
  width: 40px;
  height: 1px;
  background: var(--accent-color);
  opacity: 0.5;
}

.badge-text {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent-color);
  font-weight: 600;
}

.footer-heritage-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  font-weight: 300;
  margin-bottom: 40px;
}

.footer-social-wrap-modern {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.social-glass {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-glass:hover {
  background: var(--accent-color);
  color: #000;
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.footer-info-grid-refined {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.icon-gold-small {
  color: var(--accent-color);
  font-size: 18px;
}

.footer-col-title-refined {
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

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

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

.footer-link-refined:hover {
  color: var(--accent-color);
}



.footer-bottom-bar {
  background: #000;
  padding: 25px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.05);
}

.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 !important;
  font-weight: 700;
  transition: all 0.3s ease;
}

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

@media (max-width: 991px) {
  .footer-info-grid-refined {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .footer-col-header {
    justify-content: center;
  }
}
/* ====== 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;
  }
}

/* ====== Luxury Notice Ticker Bar ====== */
.luxury-notice-ticker-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background: rgba(11, 26, 24, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 3000;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}

.notice-badge-glow {
  background: var(--accent-color);
  color: #000;
  padding: 0 15px;
  height: 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  position: relative;
  z-index: 5;
}

.notice-badge-text {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

.notice-icon-pulse {
  font-size: 14px;
  animation: megaphoneGlow 1.5s infinite;
}

@keyframes megaphoneGlow {
  0% { filter: drop-shadow(0 0 2px #000); transform: scale(1); }
  50% { filter: drop-shadow(0 0 8px #fff); transform: scale(1.1); }
  100% { filter: drop-shadow(0 0 2px #000); transform: scale(1); }
}

.luxury-ticker-overflow {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.luxury-ticker-track {
  display: flex;
  white-space: nowrap;
  gap: 80px;
  animation: luxuryScroll 40s linear infinite;
}

.luxury-ticker-track:hover {
  animation-play-state: paused;
}

.ticker-message {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

@keyframes luxuryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Adjustments for layout */
.footer-premium {
  padding-bottom: 45px !important;
}

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

@media (max-width: 768px) {
  .luxury-notice-ticker-bar {
    height: 40px;
  }
  .notice-badge-glow {
    height: 24px;
    padding: 0 10px;
    margin-right: 15px;
  }
}
