@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gilda+Display&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #e67817;
  --header: #1C1C1C;
  --text: #434343;
  --text-2: #0B4E3D;
  --border: #C9C9C9;
  --border-2: #CBCCCF;
  --bg: #FFFAF4;
  --bg-2: #FFFAF4;
  --bg-3: #F8F8F8;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: 0.9s;
  background-color: var(--theme);
  color: var(--white);
  padding: 16px 25px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  font-family: Barlow;
  display: inline-flex !important;
  align-items: center;
}

.theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  margin: auto;
  transform: rotate(-45deg);
  background-color: var(--header);
  transition: 900ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
  border-radius: 10px;
}

.theme-btn:hover {
  color: var(--white);
}

.theme-btn:hover::before {
  height: 550%;
}body {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif !important;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 100px;
  font-weight: 400;
  line-height: 110%;
}

@media (max-width: 1899px) {
  h1 {
    font-size: 70px;
  }
}

@media (max-width: 1600px) {
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 1399px) {
  h1 {
    font-size: 65px;
  }
}

@media (max-width: 1199px) {
  h1 {
    font-size: 65px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 55px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 50px;
  font-weight: 400;
  line-height: 112%;
}

@media (max-width: 1399px) {
  h2 {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  h2 {
    font-size: 38px;
  }
}

@media (max-width: 991px) {
  h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 400;
  line-height: 107%;
}

@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 24px;
  font-weight: 400;
  line-height: 133%;
}

@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

.about-wrapper .about-image {
  position: relative;
  z-index: 9;
  max-width: 622px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image {
    max-width: initial;
  }
}

.about-wrapper .about-image::after {
  position: absolute;
  content: "";
  left: 38px;
  height: 100%;
  width: 85%;
  bottom: -30px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.05);
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image::after {
    display: none;
  }
}

.about-wrapper .about-image::before {
  position: absolute;
  content: "";
  left: 20px;
  height: 100%;
  width: 92%;
  bottom: -14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image::before {
    display: none;
  }
}

.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-wrapper .about-image .shape {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 34px;
}

.about-wrapper .about-content .text {
  max-width: 690px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.about-wrapper .about-content .list-item {
  display: flex;
  align-items: center;
  gap: 60px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .list-item {
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-content .list-item {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.about-wrapper .about-content .list-item .list li {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .list-item .list li {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-content .list-item .list li {
    font-size: 16px;
  }
}

.about-wrapper .about-content .list-item .list li i {
  color: var(--theme);
  margin-right: 10px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .list-item .list li i {
    margin-right: 4px;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-content .list-item .list li i {
    margin-right: 10px;
  }
}

.about-wrapper .about-content .list-item .list li:not(:last-child) {
  margin-bottom: 10px;
}

.about-wrapper .about-content .hero-button-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

@media (max-width: 991px) {
  .about-wrapper .about-content .hero-button-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.about-wrapper .about-content .hero-button-item .top-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.about-wrapper .about-content .hero-button-item .top-shape img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about-wrapper .about-content .hero-button-item .button-text span {
  font-size: 14px;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.about-wrapper .about-content .hero-button-item .button-text .video-btn {
  background-color: var(--white);
  color: var(--theme);
  display: inline-block;
  font-size: 16px;
  height: 51px;
  width: 51px;
  line-height: 51px;
  border-radius: 50%;
  text-align: center;
  position: relative;
}

.about-wrapper .about-content .hero-button-item .button-text .video-btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  content: "";
  transform: translate(-50%, -50%);
}

.about-wrapper-2 {
  position: relative;
}

.about-wrapper-2 .shape {
  position: absolute;
  right: 135px;
  top: 330px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .shape {
    display: none;
  }
}

.about-wrapper-2 .about-left-item .about-image {
  margin-top: 50px;
  max-width: 450px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-left-item .about-image {
    max-width: initial;
    margin-top: 30px;
  }
}

.about-wrapper-2 .about-left-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.about-wrapper-2 .about-left-item .about-list {
  margin-top: 160px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-left-item .about-list {
    margin-top: 30px;
  }
}

.about-wrapper-2 .about-left-item .about-list .list {
  margin-top: 15px;
}

.about-wrapper-2 .about-left-item .about-list .list li {
  color: var(--header);
}

.about-wrapper-2 .about-left-item .about-list .list li i {
  color: var(--theme);
  margin-right: 15px;
}

.about-wrapper-2 .about-left-item .about-list .list li:not(:last-child) {
  margin-bottom: 10px;
}

.about-wrapper-2 .about-right-content {
  margin-left: 288px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-content {
    margin-left: 0;
  }
}

.about-wrapper-2 .about-right-content .text {
  max-width: 690px;
  margin-top: 20px;
}

.about-wrapper-2 .about-right-content .about-item {
  margin-top: 75px;
  display: flex;
  gap: 30px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-content .about-item {
    margin-top: 30px;
  }
}

@media (max-width: 767px) {
  .about-wrapper-2 .about-right-content .about-item {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.about-wrapper-2 .about-right-content .about-item .left-image {
  max-width: 450px;
  margin-left: -280px;
  height: 477px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-content .about-item .left-image {
    margin-left: 0;
    max-width: initial;
    height: initial;
  }
}

.about-wrapper-2 .about-right-content .about-item .left-image img {
  width: 100%;
  height: 100%;
  border-radius: 1000px 1000px 6px 6px;
}

.about-wrapper-2 .about-right-content .about-item .right-item {
  margin-top: 50px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-content .about-item .right-item {
    margin-top: 0px;
  }
}

.about-wrapper-2 .about-right-content .about-item .right-item .about-button {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 110px;
  margin-left: 100px;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-content .about-item .right-item .about-button {
    margin-left: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-content .about-item .right-item .about-button .theme-btn {
    padding: 16px 20px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .about-wrapper-2 .about-right-content .about-item .right-item .about-button .theme-btn {
    padding: 16px 25px;
    font-size: 16px;
  }
}

.about-wrapper-2 .about-right-content .about-item .right-item .about-button .theme-btn.style-color {
  background-color: var(--header);
}

.about-wrapper-2 .about-right-content .about-item .right-item .about-button .theme-btn.style-color::before {
  background-color: var(--theme);
}

.about-wrapper-2 .about-right-content .about-item .right-item .right-image {
  max-width: 450px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .about-wrapper-2 .about-right-content .about-item .right-item .right-image {
    max-width: initial;
  }
}

.about-wrapper-2 .about-right-content .about-item .right-item .right-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

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

@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

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

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}

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

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

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

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

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

  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }

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

@keyframes wave {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-25%);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes zoom {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }

  20% {
    transform: translateX(-50px);
  }

  50% {
    transform: translatey(-40px);
  }

  100% {
    transform: translatey(0px);
  }
}.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.5);
  }

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

@keyframes borderAnim {
  0% {
    width: 0;
  }

  100% {
    width: 44px;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes shine {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes strokeColorChange1 {
  0% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }

  25% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }

  50% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }

  75% {
    -webkit-text-stroke-color: rgba(227, 87, 43, 0.1);
  }

  100% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
}

@keyframes shake {

  0%,
  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}

@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrolly {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-60%);
  }
}

@keyframes scrolls {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes scroll-left-to-right-loop {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.img_left_animation {
  animation: left-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes left-animation {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img_right_animation {
  animation: right-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes right-animation {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img_top_animation {
  animation: top-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes top-animation {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img_bottom_animation {
  animation: bottom-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes bottom-animation {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }

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

@keyframes icon-bounce {

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

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

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

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.zoom_in {
  transform: scale(0.5);
}

.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
  opacity: 0;
  transition: all 2s;
}

.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.8, 0.8, 0.8);
    transform: scale3d(0.8, 0.8, 0.8);
  }

  50% {
    opacity: 1;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes scrolly {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-60%);
  }
}

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

  100% {
    transform: translateX(0%);
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes scale {
  0% {
    transform: scale(0.5);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.5);
  }
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

.brand-item {
  position: relative;
  overflow: hidden;
}

.brand-item .brand-three-active-media {
  position: relative;
  z-index: 1;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}

.brand-item .brand-three-active-media img {
  max-width: 100%;
  height: auto;
  display: block;
}

.brand-item .brand-three-hover-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
  display: block;
}

.brand-item .brand-three-hover-media img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1399px) {
  .brand-item .brand-three-hover-media img {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .brand-item .brand-three-hover-media img {
    width: initial;
  }
}

.brand-item:hover .brand-three-active-media {
  opacity: 0;
  visibility: hidden;
}

.brand-item:hover .brand-three-hover-media {
  opacity: 1;
  visibility: visible;
}

.brand-item:hover .brand-three-hover-media img {
  filter: none;
}

.brand-section .brand-slider.style-bortder {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 48px;
  margin-bottom: 48px;
}

.hotel-booking-wrapper .hotel-booking-box {
  background-color: var(--white);
  border-radius: 10px;
  padding: 40px;
  max-width: 608px;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .hotel-booking-wrapper .hotel-booking-box {
    max-width: initial;
    padding: 30px;
  }
}

.hotel-booking-wrapper .hotel-booking-box .text {
  max-width: 524px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
}

.hotel-booking-wrapper .hotel-booking-box .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 70px;
}

@media (max-width: 1399px) {
  .hotel-booking-wrapper .hotel-booking-box .contact-item {
    margin-top: 30px;
    flex-wrap: wrap;
  }
}

.hotel-booking-wrapper .hotel-booking-box .contact-item .call-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hotel-booking-wrapper .hotel-booking-box .contact-item .call-item .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 100px;
  color: var(--white);
  background-color: var(--header);
}

.hotel-booking-wrapper .hotel-booking-box .contact-item .call-item .content span {
  color: #434343;
}

.hotel-booking-wrapper .hotel-booking-box .contact-item .call-item .content h6 {
  font-size: 18px;
  font-weight: 400;
}

.hotel-booking-wrapper .hotel-booking-box .contact-item .call-item .content h6 a {
  color: var(--theme);
}

.hotel-booking-wrapper .from-box {
  border-radius: 6px;
  max-width: 614px;
  padding: 40px 27px;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
  margin-left: 30px;
}

@media (max-width: 1399px) {
  .hotel-booking-wrapper .from-box {
    padding: 30px 25px;
    max-width: initial;
    margin-top: 0;
    margin-left: 0;
  }
}

.hotel-booking-wrapper .from-box h2 {
  font-size: 40px;
  color: var(--white);
}

@media (max-width: 575px) {
  .hotel-booking-wrapper .from-box h2 {
    font-size: 26px;
  }
}

.hotel-booking-wrapper .from-box .form-clt {
  margin-top: 30px;
}

.hotel-booking-wrapper .from-box .form-clt span {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  font-family: "Gilda Display", serif;
  color: var(--white);
  margin-bottom: 10px;
}

.hotel-booking-wrapper .from-box .form-clt input {
  border: none;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--white);
  padding-bottom: 12px;
  color-scheme: dark;
}

.hotel-booking-wrapper .from-box .form-clt input::placeholder {
  color: var(--white);
}

.hotel-booking-wrapper .from-box .form-clt .form .single-select {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--white);
  border-radius: 0;
  padding: 0;
  padding-bottom: 19px;
  line-height: initial;
  height: initial;
}

.hotel-booking-wrapper .from-box .form-clt .form .single-select span {
  margin-bottom: 0;
}

.hotel-booking-wrapper .from-box .form-clt .form .single-select .list {
  width: 100%;
}

.hotel-booking-wrapper .from-box .form-clt .form .single-select::after {
  width: 8px;
  height: 8px;
  top: 33%;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.hotel-booking-wrapper .from-box .form-clt .gt-theme-btn::before {
  width: 82%;
}

.hotel-booking-wrapper .from-box .form-clt .gt-theme-btn:hover {
  color: var(--header);
}

.hotel-booking-wrapper .from-box .form-clt .gt-theme-btn:hover::before {
  height: 2000%;
  background-color: var(--white);
}

.hotel-booking-wrapper .from-box .theme-btn {
  background-color: var(--white);
  color: var(--header);
  justify-content: center;
}

.hotel-booking-wrapper .from-box .theme-btn::before {
  transform: rotate(-25deg);
}

.hotel-booking-wrapper .from-box .theme-btn:hover {
  color: var(--white);
}

.hotel-booking-section {
  border-radius: 20px;
  margin: 0 40px;
}

@media (max-width: 1399px) {
  .hotel-booking-section {
    margin: 0 30px;
  }
}

@media (max-width: 575px) {
  .hotel-booking-section {
    margin: 0 15px;
  }
}

.contact-wrapper .contact-left-items {
  margin-right: 40px;
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-left-items {
    margin-right: 0;
  }
}

.contact-wrapper .contact-left-items .contact-list {
  margin-top: 50px;
}

.contact-wrapper .contact-left-items .contact-list li {
  border-radius: 8px;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  padding: 32px;
}

@media (max-width: 1399px) {
  .contact-wrapper .contact-left-items .contact-list li {
    display: grid;
  }
}

.contact-wrapper .contact-left-items .contact-list li .icon {
  border-radius: 4px;
  background-color: var(--theme);
  display: inline-block;
  max-width: 64px;
  width: 100%;
  height: 64px;
  line-height: 75px;
  text-align: center;
}

.contact-wrapper .contact-left-items .contact-list li .icon i {
  font-size: 32px;
  color: var(--white);
}

.contact-wrapper .contact-left-items .contact-list li h4 {
  font-family: "Barlow", sans-serif;
  margin-top: 5px;
  font-weight: 500;
}

.contact-wrapper .contact-right-items {
  border-radius: 8px;
  background-color: var(--bg);
  padding: 43px;
}

@media (max-width: 767px) {
  .contact-wrapper .contact-right-items {
    padding: 30px;
  }
}

.contact-wrapper .contact-right-items h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.contact-wrapper .contact-right-items .contact-form-box {
  margin-top: 30px;
}

.contact-wrapper .contact-right-items .contact-form-box h4 {
  margin-bottom: 10px;
}

.contact-wrapper .contact-right-items .contact-form-box .form-clt input,
.contact-wrapper .contact-right-items .contact-form-box .form-clt textarea {
  border-radius: 4px;
  border: none;
  background: var(--white);
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}

.contact-wrapper .contact-right-items .contact-form-box .form-clt textarea {
  padding-bottom: 110px;
}

.map-items .googpemap iframe {
  width: 100%;
  height: 724px;
}

@media (max-width: 575px) {
  .map-items .googpemap iframe {
    height: 400px;
  }
}

.booking-reserve-wrapper {
  padding: 48px;
  background-color: var(--header);
  position: relative;
  z-index: 999;
  border-radius: 12px;
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .booking-reserve-wrapper {
    margin-top: 30px;
    padding: 30px;
  }
}

.booking-reserve-wrapper .form-clt span {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  font-family: "Gilda Display", serif;
  color: var(--white);
  margin-bottom: 10px;
}

.booking-reserve-wrapper .form-clt input {
  border: none;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--white);
  padding-bottom: 12px;
  color-scheme: dark;
}

.booking-reserve-wrapper .form-clt input::placeholder {
  color: var(--white);
}

.booking-reserve-wrapper .form-clt .form .single-select {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--white);
  border-radius: 0;
  padding: 0;
  padding-bottom: 19px;
  line-height: initial;
  height: initial;
}

.booking-reserve-wrapper .form-clt .form .single-select span {
  margin-bottom: 0;
}

.booking-reserve-wrapper .form-clt .form .single-select .list {
  width: 100%;
}

.booking-reserve-wrapper .form-clt .form .single-select::after {
  width: 8px;
  height: 8px;
  top: 33%;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.booking-reserve-wrapper .form-clt .theme-btn {
  justify-content: center;
}

.booking-reserve-wrapper h4 {
  text-align: center;
  margin-top: 50px;
  color: var(--white);
}

@media (max-width: 1399px) {
  .booking-reserve-wrapper h4 {
    margin-top: 30px;
  }
}

.instagram-banner-items .banner-image {
  position: relative;
}

.instagram-banner-items .banner-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.instagram-banner-items .banner-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--theme);
  opacity: 0.6;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  z-index: 1;
  border-radius: 6px;
}

.instagram-banner-items .banner-image .icon {
  position: absolute;
  font-size: 50px;
  transform: translate(-50%, -50%);
  top: 20%;
  left: 80%;
  transform: translate(50%, -50%) scale(0.5);
  display: inline-block;
  z-index: 99;
  color: var(--white);
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.instagram-banner-items:hover .banner-image::before {
  transform: scale(1, 1);
  transform-origin: top center;
}

.instagram-banner-items:hover .banner-image .icon {
  opacity: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
}

.instagram-section {
  margin-top: -180px;
  position: relative;
  z-index: 999;
}

@media (max-width: 1399px) {
  .instagram-section {
    margin-top: 100px;
  }
}

@media (max-width: 991px) {
  .instagram-section {
    margin-top: 80px;
  }
}

.instagram-section .instagram-banner-slider {
  margin-left: -100px;
  margin-right: -100px;
}

@media (max-width: 1399px) {
  .instagram-section .instagram-banner-slider {
    margin-left: 0;
    margin-right: 0;
  }
}

.faq-wrapper .faq-content {
  margin-right: 30px;
}

@media (max-width: 1399px) {
  .faq-wrapper .faq-content {
    margin-right: 0;
  }
}

.faq-wrapper .faq-content .text {
  margin-top: 20px;
  max-width: 630px;
  margin-bottom: 30px;
}

.faq-wrapper .faq-content .faq-items {
  position: relative;
  z-index: 9;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item {
  border: none;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item h5 button {
  line-height: 1;
  font-size: 24px;
  font-weight: 400;
  padding: 20px 25px;
  color: var(--header);
  cursor: pointer;
}

@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item h5 button {
    font-size: 18px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body {
  padding: 0 25px 20px;
  background-color: #F4F4F4;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .faq-wrapper .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button {
  background-color: #F4F4F4;
  color: var(--header);
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: transparent !important;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button:not(.collapsed) {
  background-color: #F4F4F4;
  color: var(--theme);
  box-shadow: initial;
}

.faq-wrapper .faq-content .faq-items .accordion .accordion-button:not(.collapsed)::after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 600;
  color: var(--theme);
  transform: rotate(0);
}

.faq-wrapper .faq-image {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.faq-wrapper .faq-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.faq-wrapper .faq-image .faq-man-image {
  position: absolute;
  bottom: 0;
  left: 50px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .faq-wrapper .faq-image .faq-man-image {
    max-width: 200px;
  }
}

.faq-wrapper .faq-image .faq-man-image img {
  border-radius: 0;
}

.faq-wrapper .faq-image .faq-box {
  background-color: var(--white);
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.feature-wrapper .feature-left-item .feature-box-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .feature-wrapper .feature-left-item .feature-box-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.feature-wrapper .feature-left-item .feature-box-item .feature-box {
  border-radius: 6px;
  border: 1px solid rgba(170, 132, 83, 0.2);
  padding: 68px 30px;
  text-align: center;
  width: 210px;

}

.feature-box:hover {
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  cursor: pointer;
  transition: 0.5s;
}@media (max-width: 1399px) {
  .feature-wrapper .feature-left-item .feature-box-item .feature-box {
    padding: 50px 20px;
    width: 167px;
  }
}

@media (max-width: 991px) {
  .feature-wrapper .feature-left-item .feature-box-item .feature-box {
    padding: 68px 30px;
    width: 210px;
  }
}

@media (max-width: 575px) {
  .feature-wrapper .feature-left-item .feature-box-item .feature-box {
    width: 100%;
    padding: 30px;
  }
}

.feature-wrapper .feature-left-item .feature-box-item .feature-box p {
  color: var(--header);
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 1399px) {
  .feature-wrapper .feature-left-item .feature-box-item .feature-box p {
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .feature-wrapper .feature-left-item .feature-box-item .feature-box p {
    font-size: 18px;
  }
}

.feature-wrapper .feature-left-item .feature-box-item .feature-box.style-2 {
  background-color: var(--theme);
}

.feature-wrapper .feature-left-item .feature-box-item .feature-box.style-2 p {
  color: var(--white);
}

.feature-wrapper .feature-content {
  margin-left: 30px;
}

@media (max-width: 1399px) {
  .feature-wrapper .feature-content {
    margin-left: 0;
  }
}

.feature-wrapper .feature-content .text {
  max-width: 659px;
  margin-top: 15px;
}

.feature-wrapper .feature-content .feature-contact-item {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .feature-wrapper .feature-content .feature-contact-item {
    flex-wrap: wrap;
    margin-top: 40px;
  }
}

.feature-wrapper .feature-content .feature-contact-item .call-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 15px;
  border-radius: 10px;
  position: relative;
  z-index: 9;
  text-align: center;
}

.feature-wrapper .feature-content .feature-contact-item .call-item .shape {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
}

.feature-wrapper .feature-content .feature-contact-item .call-item .shape img {
  border-radius: 10px;
}

.feature-wrapper .feature-content .feature-contact-item .call-item .icon {
  border-radius: 4px;
  background-color: var(--theme);
  width: 32px;
  height: 32px;
  line-height: 32px;
  color: var(--white);
  text-align: center;
}

.feature-wrapper .feature-content .feature-contact-item .call-item h6 {
  font-size: 16px;
  font-weight: 700;
}

.feature-wrapper .feature-content .feature-contact-item .call-item h6 a {
  color: var(--header);
}

.feature-wrapper .feature-content .feature-contact-item .theme-btn {
  background-color: transparent;
  z-index: 1;
  color: var(--header);
  padding: 19px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.feature-wrapper .feature-content .feature-contact-item .theme-btn img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.feature-wrapper .feature-content .feature-contact-item .theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  margin: auto;
  transform: rotate(-55deg);
  background-color: var(--theme);
  transition: 900ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
  border-radius: 10px;
}

.feature-wrapper .feature-content .feature-contact-item .theme-btn:hover {
  color: var(--white);
}

.feature-wrapper .feature-content .feature-contact-item .theme-btn:hover::before {
  height: 550%;
}

.aminities-wrapper .aminities-items {
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .aminities-wrapper .aminities-items {
    margin-bottom: 30px;
  }
}

.aminities-wrapper .aminities-items .aminities-image {
  position: relative;
  overflow: hidden;
}

.aminities-wrapper .aminities-items .aminities-image a:nth-child(2),
.aminities-wrapper .aminities-items .aminities-image a:nth-child(3),
.aminities-wrapper .aminities-items .aminities-image a:nth-child(4) {
  top: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

@media (max-width: 767px) {

  .aminities-wrapper .aminities-items .aminities-image a:nth-child(2),
  .aminities-wrapper .aminities-items .aminities-image a:nth-child(3),
  .aminities-wrapper .aminities-items .aminities-image a:nth-child(4) {
    width: 100%;
  }
}

.aminities-wrapper .aminities-items .aminities-image a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.aminities-wrapper .aminities-items .aminities-image .content-box {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  text-align: center;
  padding: 40px 0;
  z-index: 999;
  border-radius: 10px;
}

@media (max-width: 1399px) {
  .aminities-wrapper .aminities-items .aminities-image .content-box {
    bottom: 15px;
    padding: 20px 0;
  }
}

@media (max-width: 575px) {
  .aminities-wrapper .aminities-items .aminities-image .content-box {
    bottom: 15px;
    padding: 18px 0;
  }
}

.aminities-wrapper .aminities-items .aminities-image .content-box .shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 1399px) {
  .aminities-wrapper .aminities-items .aminities-image .content-box .shape {
    height: 100px;
    top: 0;
    bottom: 0;
  }
}

.aminities-wrapper .aminities-items .aminities-image .content-box .shape img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.aminities-wrapper .aminities-items .aminities-image .content-box h3 {
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 10px;
}

.aminities-wrapper .aminities-items .aminities-image .content-box h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.aminities-wrapper .aminities-items .aminities-image .content-box h3 a:hover {
  color: var(--white);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.aminities-wrapper .aminities-items .aminities-image .content-box .view-btn {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  position: initial;
  font-family: "Barlow", sans-serif;
}

.aminities-wrapper .aminities-items .aminities-image .content-box .view-btn i {
  margin-left: 10px;
}

.aminities-wrapper .aminities-items .aminities-image:hover a:nth-child(2) {
  transform: scale(0.9);
}

.aminities-wrapper .aminities-items .aminities-image:hover a:nth-child(3) {
  transform: scale(0.7);
}

.aminities-wrapper .aminities-items .aminities-image:hover a:nth-child(4) {
  transform: scale(0.5);
}

.our-facilities-wrapper {
  border-top: 1px solid rgba(28, 28, 28, 0.2);
  padding-top: 50px;
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .our-facilities-wrapper {
    padding-top: 30px;
    margin-top: 30px;
  }
}

.our-facilities-wrapper .our-facilities-item {
  padding: 30px 12px;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0 4px 60px 0 rgba(170, 132, 83, 0.12);
  border-radius: 4px;
  position: relative;
}

.our-facilities-wrapper .our-facilities-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  border-radius: 4px;
}

.our-facilities-wrapper .our-facilities-item .icon {
  margin-bottom: 10px;
}

.our-facilities-wrapper .our-facilities-item h6 {
  font-size: 18px;
  font-weight: 500;
}

.our-facilities-wrapper .our-facilities-item:hover::before {
  top: auto;
  height: 100%;
  z-index: 9;
}

.our-facilities-wrapper .our-facilities-item:hover .icon {
  position: relative;
  z-index: 999;
  animation: jello 1s;
}

.our-facilities-wrapper .our-facilities-item:hover .icon img {
  filter: brightness(0) invert(1);
  animation: jello 1s;
}

.our-facilities-wrapper .our-facilities-item:hover h6 {
  color: var(--white);
  position: relative;
  z-index: 999;
}

.our-facilities-section .bg-image {
  margin-top: 60px;
  border-radius: 6px;
  position: relative;
}

@media (max-width: 1399px) {
  .our-facilities-section .bg-image {
    margin-top: 30px;
  }
}

.our-facilities-section .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 6px;
  background: rgba(28, 28, 28, 0.7);
}

.our-facilities-section .bg-image .counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 120px;
  position: relative;
}

@media (max-width: 1399px) {
  .our-facilities-section .bg-image .counter-wrapper {
    padding: 30px;
    flex-wrap: wrap;
    gap: 30px;
  }
}

.our-facilities-section .bg-image .counter-wrapper .counter-content h2 {
  color: var(--white);
}

.our-facilities-section .bg-image .counter-wrapper .counter-content h2 span {
  color: var(--white);
}

.our-facilities-section .bg-image .counter-wrapper .counter-content p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.airport-pickup-wrapper {
  margin-bottom: -50px;
}

@media (max-width: 1899px) {
  .airport-pickup-wrapper {
    margin-bottom: 0;
  }
}

.airport-pickup-wrapper .airport-pickup-item .airport-pickup-image {
  margin-left: -270px;
  position: relative;
}

@media (max-width: 1899px) {
  .airport-pickup-wrapper .airport-pickup-item .airport-pickup-image {
    margin-left: -170px;
  }
}

@media (max-width: 1600px) {
  .airport-pickup-wrapper .airport-pickup-item .airport-pickup-image {
    margin-left: -30px;
  }
}

@media (max-width: 1399px) {
  .airport-pickup-wrapper .airport-pickup-item .airport-pickup-image {
    margin-left: 0;
  }
}

.airport-pickup-wrapper .airport-pickup-item .airport-pickup-image img {
  width: 100%;
  height: 100%;
}

.airport-pickup-wrapper .airport-pickup-item .airport-pickup-image .radius-image {
  position: absolute;
  bottom: 60px;
  left: 335px;
}

@media (max-width: 1399px) {
  .airport-pickup-wrapper .airport-pickup-item .airport-pickup-image .radius-image {
    display: none;
  }
}

.airport-pickup-wrapper .airport-pickup-item .airport-pickup-image .radius-image img {
  width: initial;
  height: initial;
}

.airport-pickup-wrapper .airport-pickup-content {
  margin-top: 100px;
}

@media (max-width: 1399px) {
  .airport-pickup-wrapper .airport-pickup-content {
    margin-top: 0;
  }
}

.airport-pickup-wrapper .airport-pickup-content .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  .airport-pickup-wrapper .airport-pickup-content .info-item {
    margin-bottom: 30px;
  }
}

.airport-pickup-wrapper .airport-pickup-content .info-item span {
  font-weight: 500;
  max-width: 168px;
  color: var(--header);
}

.airport-pickup-wrapper .airport-pickup-content .text {
  margin-top: 20px;
  margin-bottom: 50px;
  max-width: 690px;
}

@media (max-width: 1399px) {
  .airport-pickup-wrapper .airport-pickup-content .text {
    margin-bottom: 30px;
  }
}

.airport-pickup-wrapper .airport-pickup-content .theme-btn {
  background-color: var(--header);
}

.airport-pickup-wrapper .airport-pickup-content .theme-btn::before {
  background-color: var(--theme);
}

.airport-pickup-section {
  position: relative;
}

.airport-pickup-section .plane-image {
  position: absolute;
  top: 169px;
  right: -38%;
}

@media (max-width: 1600px) {
  .airport-pickup-section .plane-image {
    right: -57%;
  }
}

@media (max-width: 1399px) {
  .airport-pickup-section .plane-image {
    display: none;
  }
}

.airport-pickup-section .plane-image img {
  width: initial;
  height: initial;
  animation: scale 6s ease-in-out infinite;
}

.hotel-gallery-section {
  position: relative;
  z-index: 9;
}

.hotel-gallery-section .line-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media (max-width: 1399px) {
  .hotel-gallery-section .line-shape {
    display: none;
  }
}

.hotel-gallery-section .line-shape img {
  width: 98%;
  height: 100%;
}

.hotel-gallery-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background-color: var(--theme);
  left: 40px;
  width: 96%;
}

@media (max-width: 1600px) {
  .hotel-gallery-section::before {
    left: 30px;
  }
}

@media (max-width: 1399px) {
  .hotel-gallery-section::before {
    width: 100%;
    left: 0;
  }
}

.hotel-gallery-section .section-title {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
}

.hotel-gallery-wrapper {
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .hotel-gallery-wrapper {
    margin-top: 30px;
  }
}

.hotel-gallery-wrapper .gallery-image {
  height: 450px;
}

@media (max-width: 1399px) {
  .hotel-gallery-wrapper .gallery-image {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .hotel-gallery-wrapper .gallery-image {
    height: 220px;
  }
}

.hotel-gallery-wrapper .gallery-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.hotel-gallery-wrapper .nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 50px;
  justify-content: center;
}

@media (max-width: 1399px) {
  .hotel-gallery-wrapper .nav {
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.hotel-gallery-wrapper .nav li {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1399px) {
  .hotel-gallery-wrapper .nav li {
    font-size: 16px;
  }
}

.hotel-gallery-wrapper .nav li .nav-link {
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease-in-out;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  padding: 0;
}

.hotel-gallery-wrapper .nav li .nav-link.active {
  position: relative;
  color: var(--white);
}

.hotel-gallery-wrapper .gallery-slider {
  margin-left: -60%;
  margin-right: -60%;
}

@media (max-width: 1399px) {
  .hotel-gallery-wrapper .gallery-slider {
    margin-left: 0;
    margin-right: 0;
  }
}

.offer-bg-section {
  margin: 0 40px;
  position: relative;
}

@media (max-width: 1399px) {
  .offer-bg-section {
    margin: 0 30px;
    overflow: hidden;
  }
}

@media (max-width: 575px) {
  .offer-bg-section {
    margin: 0 15px;
  }
}

.offer-bg-section .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 1600px) {
  .offer-bg-section .bg-image {
    left: 0;
    right: 0;
  }
}

.offer-bg-section .bg-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.offer-bg-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .offer-bg-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.offer-bg-wrapper .offer-bg-box {
  background-color: var(--white);
  max-width: 524px;
  width: 100%;
  border-radius: 10px;
  padding: 40px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .offer-bg-wrapper .offer-bg-box {
    padding: 30px;
  }
}

.offer-bg-wrapper .offer-bg-box::before {
  position: absolute;
  content: "";
  left: 20px;
  top: 45px;
  height: 83%;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .offer-bg-wrapper .offer-bg-box::before {
    display: none;
  }
}

.offer-bg-wrapper .offer-bg-box::after {
  position: absolute;
  content: "";
  left: 35px;
  top: 65px;
  height: 75%;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1399px) {
  .offer-bg-wrapper .offer-bg-box::after {
    display: none;
  }
}

.offer-bg-wrapper .offer-bg-box .text {
  margin-top: 15px;
}

.offer-bg-wrapper .offer-bg-box .offer-list {
  margin-top: 20px;
  margin-bottom: 30px;
}

.offer-bg-wrapper .offer-bg-box .offer-list li {
  padding-left: 15px;
  position: relative;
}

.offer-bg-wrapper .offer-bg-box .offer-list li:not(:last-child) {
  margin-bottom: 10px;
}

.offer-bg-wrapper .offer-bg-box .offer-list li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 30px;
  background-color: var(--text);
  left: 0;
  top: 10px;
}

.offer-bg-wrapper .offer-bg-box h6 {
  font-weight: 500;
  color: var(--theme);
  text-transform: uppercase;
  background: rgba(170, 132, 83, 0.1);
  border-radius: 6px;
  padding: 12px 20px;
  margin-bottom: 50px;
  max-width: 320px;
  width: 100%;
}

@media (max-width: 1399px) {
  .offer-bg-wrapper .offer-bg-box h6 {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .offer-bg-wrapper .offer-bg-box h6 {
    padding: 12px 10px;
    font-size: 14px;
  }
}

.offer-bg-wrapper .offer-right-item {
  position: relative;
}

.offer-bg-wrapper .offer-right-item .offer-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.offer-bg-wrapper .offer-right-item .offer-slider {
  height: 380px;
}

.bg-image-2 {
  border-radius: 6px;
  position: relative;
}

.bg-image-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 6px;
  background: rgba(28, 28, 28, 0.7);
}

.bg-image-2 .counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 120px;
  position: relative;
}

.bg-image-2 .counter-wrapper .counter-content h2 {
  color: var(--white);
}

.bg-image-2 .counter-wrapper .counter-content h2 span {
  color: var(--white);
}

.bg-image-2 .counter-wrapper .counter-content p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.counter-section-inn .bg-image {
  border-radius: 6px;
  position: relative;
}

@media (max-width: 1399px) {
  .counter-section-inn .bg-image {
    margin-top: 30px;
  }
}

.counter-section-inn .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 6px;
  background: rgba(28, 28, 28, 0.7);
}

.counter-section-inn .bg-image .counter-wrapper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 90px 120px;
  position: relative;
}

.counter-section-inn .bg-image .counter-wrapper-inner .counter-content h2 {
  color: var(--white);
}

.counter-section-inn .bg-image .counter-wrapper-inner .counter-content h2 span {
  color: var(--white);
}

.counter-section-inn .bg-image .counter-wrapper-inner .counter-content p {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}

.footer-newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
  padding: 30px 30px;
  background-color: var(--theme);
  border-radius: 16px;
}

@media (max-width: 1399px) {
  .footer-newsletter {
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
    margin-top: 80px;
  }
}

.footer-newsletter .newsletter-content h3 {
  color: var(--white);
  font-size: 40px;
  margin-bottom: 10px;
}

@media (max-width: 1399px) {
  .footer-newsletter .newsletter-content h3 {
    font-size: 30px;
  }
}

.footer-newsletter .newsletter-content p {
  font-weight: 500;
  color: var(--white);
  max-width: 442px;
}

.footer-newsletter form {
  max-width: 765px;
  width: 100%;
}

.footer-newsletter .form-clt {
  position: relative;
}

.footer-newsletter .form-clt i {
  top: 43%;
  left: 24px;
  position: absolute;
  color: #A6A6A6;
}

@media (max-width: 575px) {
  .footer-newsletter .form-clt i {
    display: none;
  }
}

.footer-newsletter .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  color: #A6A6A6;
  line-height: 1;
  padding: 25px 0px 25px 50px;
  border-radius: 10px;
  max-width: 765px;
}

@media (max-width: 991px) {
  .footer-newsletter .form-clt input {
    padding: 20px 0px 20px 50px;
  }
}

@media (max-width: 575px) {
  .footer-newsletter .form-clt input {
    padding: 20px 0px 20px 20px;
  }
}

.footer-newsletter .form-clt input::placeholder {
  color: #A6A6A6;
}

.footer-newsletter .form-clt .theme-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
}

@media (max-width: 575px) {
  .footer-newsletter .form-clt .theme-btn {
    padding: 18px 16px;
    font-size: 14px;
  }
}

.footer-widget-wrapper {
  padding: 30px 0 48px;
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .widget-title {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .widget-title h5 {
  color: var(--white);
  position: relative;
  padding-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .widget-title h5::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 2px;
  background-color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .widget-title h5::after {
  position: absolute;
  bottom: 0;
  left: 10px;
  content: "";
  width: 81px;
  height: 2px;
  background-color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: var(--white);
  max-width: 290px;
}

.footer-widget-wrapper .single-footer-widget .list li {
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}

.footer-widget-wrapper .single-footer-widget .list li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .list li a {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .list li:hover {
  margin-left: 5px;
}

.footer-widget-wrapper .single-footer-widget .list li:hover a {
  color: var(--theme);
}

.footer-widget-wrapper .single-footer-widget .date-list li {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--white);
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget .date-list li {
    gap: 17px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper .single-footer-widget .date-list li {
    gap: 30px;
  }
}

.footer-widget-wrapper .single-footer-widget .date-list li:not(:last-child) {
  margin-bottom: 16px;
}

.footer-widget-wrapper .single-footer-widget .date-list li span.style-1 {
  display: inline-block;
  margin-left: -5px;
}

.footer-widget-wrapper .single-footer-widget .date-list li span.style-3 {
  display: inline-block;
  margin-left: 10px;
}

.footer-widget-wrapper .single-footer-widget .contact-item li {
  display: flex;
  align-items: start;
  color: var(--white);
  gap: 8px;
}

.footer-widget-wrapper .single-footer-widget .contact-item li.style-2 {
  display: flex;
  align-items: center;
}

.footer-widget-wrapper .single-footer-widget .contact-item li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-widget-wrapper .single-footer-widget .contact-item li a {
  color: var(--white);
}

.footer-widget-wrapper .single-footer-widget .contact-item li i {
  color: var(--theme);
}

.footer-section {
  position: relative;
  z-index: 999;
}

.footer-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.6) 0%, #0D0D0D 55%);
  z-index: -1;
}

.footer-bottom {
  padding-bottom: 40px;
}

.footer-bottom.style-3 {
  padding-bottom: 80px;
}

@media (max-width: 1399px) {
  .footer-bottom.style-3 {
    padding-bottom: 40px;
  }
}

.footer-bottom .footer-wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 25px;
  }
}

@media (max-width: 575px) {
  .footer-bottom .footer-wrapper {
    justify-content: center;
  }
}

.footer-bottom .footer-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom .footer-wrapper .social-icon a {
  color: var(--white);
  opacity: 0.7;
  font-size: 25px;
}

.footer-bottom .footer-wrapper .social-icon a:hover {
  color: var(--theme);
  opacity: none;
}

.footer-bottom .footer-wrapper .footer-list {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper .footer-list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 575px) {
  .footer-bottom .footer-wrapper .footer-list {
    justify-content: center;
  }
}

.footer-bottom .footer-wrapper .footer-list li {
  color: var(--white);
  opacity: 0.7;
}

.footer-bottom .footer-wrapper .footer-list li a {
  color: var(--white);
  opacity: 0.7;
}

.footer-bottom .footer-wrapper .footer-list li a:hover {
  color: var(--theme);
  opacity: none;
}

.footer-bottom .footer-wrapper p {
  color: var(--white);
}

.footer-bottom .footer-wrapper p span {
  text-transform: uppercase;
  color: var(--theme);
}

.footer-bottom .footer-logo {
  text-align: center;
  margin: 0 auto;
  display: block;
}

.header-top-section-3 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1600px) {
  .header-top-section-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-top-section-3 {
    display: none;
  }
}

.header-top-section-3.style-bg {
  
  position: relative;
  z-index: 999;
}

.header-top-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  position: relative;
  z-index: 999;
}

.header-top-wrapper-3 .header-left .list {
  display: flex;
  align-items: center;
  gap: 50px;
}

.header-top-wrapper-3 .header-left .list li {
  color: #000000;
  font-weight: 400;
  opacity: 0.7;
}

.header-top-wrapper-3 .header-left .list li a {
  color: #000000;
  opacity: 0.7;
}

.header-top-wrapper-3 .header-left .list li i {
  margin-right: 6px;
}

.header-top-wrapper-3 .social-icon {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-top-wrapper-3 .social-icon a {
  color: #8E8E93;
  font-size: 20px;
}

.header-top-wrapper-3 .social-icon a:hover {
  color: var(--theme);
}

.header-top-wrapper-3.style-inner {
  padding: 20px 0;
}

.header-top-wrapper-3.style-inner .header-left .list li {
  color: var(--white);
}

.header-top-wrapper-3.style-inner .header-left .list li a {
  color: var(--white);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 50px;
}

@media (max-width: 1199px) {
  .header-main .main-menu ul li {
    margin-inline-end: 30px;
  }
}

.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu #mobile-menu>ul>li>a::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu #mobile-menu>ul>li>a:hover::after,
.header-main .main-menu #mobile-menu>ul>li.active>a::after {
  width: 100%;
}

.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme);
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 15px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(15px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.4, 1);
  border-top: 4px solid var(--theme);
  background-color: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 12px 12px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.2px;
  color: #222 !important;
  line-height: 42px;
  padding: 0px 25px 0px 25px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.4, 1);
  border-left: 3px solid transparent;
}.header-main .main-menu ul li .submenu li a::before {
  display: none !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
  color: var(--theme) !important;
  background-color: rgba(230, 120, 23, 0.05);
  padding-left: 30px;
  border-left-color: var(--theme);
}

.header-main .main-menu ul li .submenu li:hover>a::before {
  width: 10px;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: #e67817;
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}@keyframes submenuItemFade {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.header-main .main-menu ul li:hover .submenu li {
  animation: submenuItemFade 0.4s ease forwards;
  opacity: 0;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(1) {
  animation-delay: 0.1s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(2) {
  animation-delay: 0.15s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(3) {
  animation-delay: 0.2s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(4) {
  animation-delay: 0.25s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(5) {
  animation-delay: 0.3s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(6) {
  animation-delay: 0.35s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(7) {
  animation-delay: 0.4s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(8) {
  animation-delay: 0.45s;
}

.header-main .main-menu ul li:hover .submenu li:nth-child(9) {
  animation-delay: 0.5s;
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 800px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
  background-color: var(--white);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
  width: 100%;
  padding: 0 12px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    font-size: 14px;
    min-width: 140px;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 18px 30px;
  justify-content: center;
  line-height: 1;
  color: var(--white) !important;
  position: relative;
  background-color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  margin: auto;
  transform: rotate(-45deg);
  background-color: var(--header);
  transition: 900ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
  border-radius: 10px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  height: 550%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--header);
}

.header-main .main-menu ul li:hover>a {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>a::after {
  color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}

.header-main .header-right {
  gap: 20px;
}

.header-main .header-right.style-3 {
  gap: 70px;
}

.header-main .header-right .call-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 32px;
  border-radius: 12px;
  position: relative;
  z-index: 9;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.header-main .header-right .call-item:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

@media (max-width: 1399px) {
  .header-main .header-right .call-item {
    display: none;
  }
}

.header-main .header-right .call-item.style-2 {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 15px;
}

.header-main .header-right .call-item .shape {
  position: absolute;
  left: 12px;
  top: 10px;
  bottom: 10px;
  z-index: -1;
}

.header-main .header-right .call-item .icon {
  background-color: transparent;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: normal;
  color: var(--theme);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.header-main .header-right .call-item h6 {
  font-size: 16px;
  font-weight: 700;
}

.header-main .header-right .call-item h6 a {
  color: #e67817;
}

.sticky.header-1 .header-main .header-right .call-item {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.sticky.header-1 .header-main .header-right .call-item h6 a {
  color: var(--white);
}

@media (max-width: 1399px) {
  .header-main .header-right .header-button {
    display: none;
  }
}

.header-main .header-right .header-button .theme-btn {
  background: transparent;
  z-index: 1;
  color: var(--white);
  padding: 17px 38px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: none;
}

.header-main .header-right .header-button .theme-btn img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.sticky.header-1 .header-main .header-right .header-button .theme-btn {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}

.sticky.header-1 .header-main .header-right .header-button .theme-btn:hover {
  color: white !important;
}

.header-main .header-right .header-button .theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  margin: auto;
  transform: rotate(-45deg);
  background-color: var(--theme);
  transition: 900ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
  border-radius: 10px;
}

.header-main .header-right .header-button .theme-btn:hover {
  color: white !important;
}

.header-main .header-right .header-button .theme-btn:hover::before {
  height: 550%;
}

.header-main .header-right .header-button .theme-btn.style-3 {
  background-color: var(--theme);
  padding: 15px 35px;
  border-radius: 4px;
}

.header-main .header-right .header-button .theme-btn.style-3::before {
  background-color: var(--white);
}

.header-main .header-right .header-button .theme-btn.style-3:hover {
  color: var(--theme);
}

.header-main .header-right .flag-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 14px 15px;
}

@media (max-width: 1399px) {
  .header-main .header-right .flag-wrap {
    display: none;
  }
}

.header-main .header-right .flag-wrap i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 4px;
  color: var(--white);
}

.header-main .header-right .flag-wrap .nice-select {
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
  height: initial;
}

.header-main .header-right .flag-wrap .nice-select span {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.header-main .header-right .flag-wrap .nice-select .list {
  width: initial;
}

.header-main .header-right .flag-wrap .nice-select .list li {
  color: var(--header);
}

.header-main .header-right .flag-wrap .nice-select::after {
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  height: 7px;
  margin-top: -4px;
  width: 7px;
  right: -3px;
}

.header-main .header-right .flag-wrap .flag {
  position: absolute;
  top: 9px;
  left: 15px;
  z-index: 1;
}

@media (max-width: 767px) {
  .header-main .header-right .flag-wrap .flag {
    display: none;
  }
}

.header-main .header-right .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--white);
}

.header-1 {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.header-1:not(.sticky) .header-main .main-menu {
  background-color: transparent;
  padding: 0px 30px;
  border-radius: 50px;
  display: inline-block;
  box-shadow: none;
}

.header-1:not(.sticky) .header-main .header-right .call-item {
  background: transparent !important;
  background-color: transparent !important;
  padding: 10px 25px;
  border-radius: 50px;
  margin-right: 15px;
  display: flex !important;
  align-items: center;
  gap: 10px;
  box-shadow: none !important;
  border: none !important;
}

@media (max-width: 1399px) {
  .header-1:not(.sticky) .header-main .header-right .call-item {
    display: none !important;
  }
}

.header-1:not(.sticky) .header-main .header-right .call-item .icon {
  color: var(--theme);
  background-color: transparent;
  width: auto;
  height: auto;
  line-height: normal;
  text-align: center;
  border-radius: 0;
}

.header-1:not(.sticky) .header-main .header-right .call-item h6 a {
  color: var(--white);
}

.header-1 .header-main {
  background: transparent;
  border: none;
  padding: 14px 22px;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

.sticky.header-1 {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.sticky.header-1 .header-main {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 14px 22px;
}

.header-1:not(.sticky) .header-main .header-right .header-button .theme-btn {
  background: var(--theme) !important;
  background-color: var(--theme) !important;
  border: 1px solid var(--theme) !important;
  box-shadow: 0 8px 16px rgba(230, 120, 23, 0.2) !important;
  color: white !important;
  transition: all 0.3s ease;
}.header-1 .header-main .main-menu {
  background: transparent;
  border: none;
  padding: 12px 28px;
  border-radius: 14px;
  box-shadow: none;
  backdrop-filter: blur(6px);
  display: inline-block;
}

.header-1:not(.sticky) .header-main .main-menu ul li a {
  color: var(--white);
}

.header-1 .header-main .main-menu ul li a:hover {
  color: #c85f0f;
}

.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--white);
}

.sticky.header-1 .header-main .main-menu {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
}.header-main .main-menu ul li a {
  transition: color 0.3s ease, background-color 0.3s ease;
}.header-1:not(.sticky) .header-main .main-menu ul li>a:hover {
  color: #e67817 !important;
}.sticky.header-1 .header-main .main-menu ul li>a:hover {
  color: #e67817 !important;
}.header-main .main-menu ul li .submenu li a {
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: #e67817 !important;
  padding-left: 36px;
}.header-1:not(.sticky) .header-main .header-right .header-button .theme-btn {
  transition: all 0.3s ease;
}

.header-1:not(.sticky) .header-main .header-right .header-button .theme-btn:hover {
  color: white !important;
  background: #1C1C1C !important;
  background-color: #1C1C1C !important;
  border: 1px solid var(--theme) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.header-1:not(.sticky) .header-main .header-right .header-button .theme-btn::before {
  background-color: #1C1C1C !important;
}.sticky.header-1 .header-main .header-right .header-button .theme-btn {
  transition: all 0.3s ease;
}

.sticky.header-1 .header-main .header-right .header-button .theme-btn:hover {
  color: white !important;
  background: linear-gradient(90deg, #e67817 0%, #c85f0f 100%);
  border-color: #e67817;
  box-shadow: 0 14px 30px rgba(230, 120, 23, 0.5);
  transform: translateY(-2px);
}.header-main .header-right .call-item {
  transition: all 0.3s ease;
}

.header-main .header-right .call-item:hover {
  transform: translateY(-2px);
}

.header-main .header-right .call-item h6 a {
  transition: color 0.3s ease;
}

.header-main .header-right .call-item:hover h6 a {
  color: #c85f0f !important;
}

.sticky.header-1 .header-main .header-right .call-item:hover h6 a {
  color: #e67817 !important;
}.header-1 .container-fluid {
  padding: 0 60px;
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}

.header-1 .header-main .header-left .header-logo-2 {
  display: none;
}

.header-1 .header-main .main-menu {
  position: relative;
  padding: 0 30px;
}

.header-1 .header-main .main-menu .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 1399px) {
  .header-1 .header-main .main-menu .bg-image {
    display: none;
  }
}

.header-1.header-2 .container-fluid {
  padding: 0 100px;
}

@media (max-width: 1399px) {
  .header-1.header-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .header-1.header-2 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .header-1.header-2 .container-fluid {
    padding: 0 15px;
  }
}

.header-1.header-2 .header-main .header-left .header__hamburger .sidebar__toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  padding: 20px 20px;
  background-color: var(--header);
}

.header-1.header-2 .header-main .header-left .header__hamburger .sidebar__toggle h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.header-1.header-2 .header-main .header-left .header__hamburger .sidebar__toggle i {
  color: var(--white);
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .header-left .header__hamburger {
    display: none;
  }
}

.header-1.header-2 .header-main .logo .header-logo-2 {
  display: none;
}

@media (max-width: 1399px) {
  .header-1.header-2 .header-main .logo {
    display: none;
  }
}

.header-1.header-3 {
  top: 70px;
}

@media (max-width: 1399px) {
  .header-1.header-3 {
    top: 0;
  }
}

.header-1.header-3 .container-fluid {
  padding: 0 60px;
}

@media (max-width: 1399px) {
  .header-1.header-3 .container-fluid {
    padding: 0 60px;
  }
}

@media (max-width: 575px) {
  .header-1.header-3 .container-fluid {
    padding: 0 30px;
  }
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999;
  transition: all 0.9s;
  background-color: #000000 !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 8px 24px;
}

.sticky.header-1 .header-main .header-left .header-logo-2 {
  display: none;
}

.sticky.header-1 .header-main .header-left .header-logo {
  display: block;
}

.sticky.header-1 .header-main .main-menu ul li a {
  color: var(--white) !important;
}

.sticky.header-1 .header-main .main-menu ul li .submenu li a {
  color: var(--header) !important;
}

.sticky.header-1 .header-main .header-right .sidebar__toggle {
  color: var(--white);
}

.sticky.header-2 .header-main .header-left .header__hamburger .sidebar__toggle {
  padding: 18px 20px;
}

@media (max-width: 1399px) {
  .sticky.header-2 .header-main .header-left .header-logo {
    display: block !important;
  }

  .sticky.header-2 .header-main .header-left .header-logo img {
    filter: brightness(0);
  }
}

.sticky.header-2 .header-main .logo .header-logo-2 {
  display: block;
}

.sticky.header-2 .header-main .logo .header-logo {
  display: none;
}

.sticky.header-2 .header-main .header-right .call-item.style-2 {
  border-radius: 10px;
  border: 1px solid var(--header);
  padding: 16px 15px;
}

.sticky.header-2 .header-main .header-right .call-item.style-2 h6 {
  font-weight: 700;
}

.sticky.header-2 .header-main .header-right .call-item.style-2 h6 a {
  color: var(--header);
}

.sticky.header-2 .header-main .header-right .flag-wrap {
  border: 1px solid var(--header);
  padding: 12px 16px;
}

.sticky.header-2 .header-main .header-right .flag-wrap .nice-select span {
  color: var(--header);
}

.sticky.header-2 .header-main .header-right .flag-wrap .nice-select .list li {
  color: var(--header);
}

.sticky.header-2 .header-main .header-right .flag-wrap .nice-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
}

.sticky.header-3 {
  top: 0;
}

.sticky.header-3 .header-main .header-right .main-menu ul li a {
  color: var(--header) !important;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
  color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: static;
  z-index: 9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact h4 {
  margin-bottom: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 0;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 14px;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--black);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 100%;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: #000;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.style-offcanvas-2 .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 30px;
  left: 20px !important;
  right: initial !important;
  cursor: pointer;
  color: #767676 !important;
}

.style-offcanvas-2 .offcanvas__close i {
  color: #fff !important;
}

@media (max-width: 1199px) {
  .style-offcanvas-2 .offcanvas__close {
    top: 25px;
    right: 25px;
  }
}

.style-offcanvas-2 .offcanvas__logo {
  position: absolute;
  top: 30px;
  left: 30px;
}

@media (max-width: 1199px) {
  .style-offcanvas-2 .offcanvas__logo {
    top: 25px;
    left: 25px;
  }
}

.style-offcanvas-2 .offcanvas__info {
  width: 210px !important;
  padding: 50px 0;
  background-color: var(--white) !important;
  height: 100%;
}

.style-offcanvas-2 .offcanvas__info::before {
  display: none;
}

.style-offcanvas-2 .mean-container .mean-nav ul li a.mean-expand {
  top: 5px !important;
}

.style-offcanvas-2 .offcanvas__close {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: absolute;
  top: 14px;
  right: 15px;
  cursor: pointer;
}

@media (max-width: 1199px) {
  .style-offcanvas-2 .offcanvas__close {
    top: 25px;
    right: 25px;
  }
}

.style-offcanvas-2 .offcanvas__logo {
  left: 115px;
  top: 10px;
}

.style-offcanvas-2 .offcanvas__logo img {
  width: 60px;
}

.style-offcanvas-2 .mean-container .mean-nav ul li>a.mean-expand i {
  font-size: 14px !important;
}

.style-offcanvas-2 .mobile-menus .submenu a {
  font-size: 14px !important;
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(170, 132, 83, 0) 0%, rgba(28, 28, 28, 0.8) 50%, #1C1C1C 95.19%);
  z-index: -1;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 280px 0 140px;
  z-index: 9;
  text-align: center;
}

@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    padding: 200px 0 130px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 170px 0 115px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 72px;
  position: relative;
  text-transform: capitalize;
  z-index: 9;
  font-weight: 400;
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
  }
}

@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: inline-flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: theme-color;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.error-items {
  text-align: center;
}

.error-items .error-image {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 30px;
}

.error-items .error-image img {
  width: 100%;
  height: 100%;
}

.error-items h2 {
  margin-bottom: 20px;
}

.error-items p {
  margin-bottom: 50px;
}

@media (max-width: 1399px) {
  .error-items p {
    margin-bottom: 30px;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(170, 132, 83, 0.6);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.array-buttons-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1199px) {
  .array-buttons-2 {
    flex-wrap: wrap;
  }
}

.array-buttons-2 .array-prev {
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: var(--header);
  color: #00E5FF;
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
}

.array-buttons-2 .array-prev:hover {
  background: var(--theme);
  color: var(--white);
}

.array-buttons-2 .array-next {
  width: 42px;
  height: 42px;
  line-height: 42px;
  border-radius: 100%;
  text-align: center;
  background: #2ADDC8;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

.array-buttons-2 .array-next:hover {
  background: var(--theme);
  color: var(--white);
}

.array-buttons-4 {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1199px) {
  .array-buttons-4 {
    flex-wrap: wrap;
  }
}

.array-buttons-4 .array-prev {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--bg);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 100%;
}

.array-buttons-4 .array-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border: 1px solid rgb(65, 65, 65);
  border-radius: 100%;
  text-align: center;
  background: transparent;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

.array-buttons-4 .array-next:hover {
  background: var(--bg);
  border: 1px none;
  color: var(--white);
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.custom-container {
  max-width: 1700px;
  margin: 0 auto;
}

.bw-img-anim-left,
.bw-img-anim-right {
  transition: clip-path 0.5s ease-out;
}

.nice-select {
  background-color: transparent;
  width: unset;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.nice-select .current {
  margin-right: 12px;
}

.nice-select.open .list {
  background: var(--bg);
  margin-top: 16px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}

.nice-select .option.selected.focus {
  background: var(--bg);
  outline: none;
  color: var(--text);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  border: none;
}

.nice-select .option {
  border: none;
}

.nice-select .option:hover {
  background: transparent;
}

.p-relative {
  position: relative;
}

.tp-clip-anim {
  position: relative;
  overflow: hidden;
}

.tp-clip-anim .mask {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  opacity: 0;
  animation: reveal 1s forwards;
}

.tp-clip-anim .mask-1 {
  clip-path: inset(0 88.8% 0 0%);
  animation-delay: 0.1s;
}

.tp-clip-anim .mask-2 {
  clip-path: inset(0 77.7% 0 11.1%);
  animation-delay: 0.2s;
}

.tp-clip-anim .mask-3 {
  clip-path: inset(0 66.6% 0 22.2%);
  animation-delay: 0.3s;
}

.tp-clip-anim .mask-4 {
  clip-path: inset(0 55.5% 0 33.3%);
  animation-delay: 0.4s;
}

.tp-clip-anim .mask-5 {
  clip-path: inset(0 44.4% 0 44.4%);
  animation-delay: 0.5s;
}

.tp-clip-anim .mask-6 {
  clip-path: inset(0 33.3% 0 55.5%);
  animation-delay: 0.6s;
}

.tp-clip-anim .mask-7 {
  clip-path: inset(0 22.2% 0 66.6%);
  animation-delay: 0.7s;
}

.tp-clip-anim .mask-8 {
  clip-path: inset(0 11.1% 0 77.7%);
  animation-delay: 0.8s;
}

.tp-clip-anim .mask-9 {
  clip-path: inset(0 0% 0 88.8%);
  animation-delay: 0.9s;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.swiper-dot-1 {
  position: relative;
  z-index: 999;
  margin-top: 60px;
}

.swiper-dot-1 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: #D9D9D9;
  opacity: 1;
  position: relative;
}

.swiper-dot-1 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.swiper-dot-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 30px;
  box-shadow: 0 0 10px var(--theme);
}

.swiper-dot-1 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 12px;
  height: 12px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.swiper-dot-1.style-team .swiper-pagination-bullet {
  background-color: var(--header);
}

.swiper-dot-1.style-team .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
}

.array-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.array-buttons .array-prev {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 4px;
  text-align: center;
  background-color: var(--white);
  color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.array-buttons .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}

.array-buttons .array-next {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 4px;
  text-align: center;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.array-buttons .array-next:hover {
  background-color: var(--white);
  color: var(--theme);
}

.page-nav-wrap {
  margin-top: 60px;
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: #F7F3EE;
  color: var(--header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 4px;
  font-family: "Gilda Display", serif;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}

.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

.swiper-dot-2 {
  position: relative;
  z-index: 999;
  margin-top: 60px;
  text-align: center;
}

.swiper-dot-2 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: var(--header);
  opacity: 1;
  position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 30px;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.hero-1 {
  padding-top: 220px;
  padding-bottom: 60px;
  position: relative;
  min-height: 100vh;
}

@media (max-width: 1399px) {
  .hero-1 {
    min-height: 85vh;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    min-height: 75vh;
  }
}

@media (max-width: 767px) {
  .hero-1 {
    min-height: 65vh;
  }
}

@media (max-width: 1399px) {
  .hero-1 {
    padding-top: 200px;
  }
}

@media (max-width: 991px) {
  .hero-1 {
    padding-top: 160px;
  }
}

.hero-1 .container-fluid {
  padding: 0 60px;
}

@media (max-width: 1600px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-1 .container-fluid {
    padding: 0 15px;
  }
}

.hero-1 .signature-image {
  position: absolute;
  bottom: 205px;
  right: 250px;
}

@media (max-width: 1399px) {
  .hero-1 .signature-image {
    display: none;
  }
}

.hero-1 .hero-content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  max-width: 422px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .hero-1 .hero-content p {
    font-size: 16px;
  }
}

.hero-1 .hero-content .theme-btn {
  background-color: transparent;
  z-index: 1;
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 22px 25px;
  height: 55px;
}

.hero-1 .hero-content .theme-btn img {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -2;
}

.hero-1 .hero-content .theme-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -16px;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  margin: auto;
  transform: rotate(-45deg);
  background-color: var(--theme);
  transition: 900ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
  border-radius: 10px;
}

.hero-1 .hero-content .theme-btn:hover {
  color: var(--white);
}

.hero-1 .hero-content .theme-btn:hover::before {
  height: 550%;
}

.hero-1 .hero-content .hero-wrapper {
  display: block;
  width: 100%;
  position: relative;
  min-height: 500px;
}@media (min-width: 1600px) {
  .hero-1 .hero-content .hero-wrapper {
    min-height: 600px;
  }
}@media (min-width: 1400px) and (max-width: 1599px) {
  .hero-1 .hero-content .hero-wrapper {
    min-height: 550px;
  }
}@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-1 .hero-content .hero-wrapper {
    min-height: 500px;
  }
}@media (min-width: 992px) and (max-width: 1199px) {
  .hero-1 .hero-content .hero-wrapper {
    min-height: 450px;
  }
}@media (min-width: 768px) and (max-width: 991px) {
  .hero-1 .hero-content .hero-wrapper {
    min-height: 400px;
    margin-top: 20px;
  }
}@media (min-width: 576px) and (max-width: 767px) {
  .hero-1 .hero-content .hero-wrapper {
    min-height: auto;
    margin-top: 20px;
  }
}@media (max-width: 575px) {
  .hero-1 .hero-content .hero-wrapper {
    min-height: auto;
    margin-top: 15px;
  }
}

.hero-1 .hero-content .hero-wrapper .hero-left-content {
  position: absolute;
  left: 0;
  top: 30%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50%;
  
  pointer-events: none;
  
}

.hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
  pointer-events: auto;
  color: #ffffff;
  margin-bottom: 0;
  text-transform: uppercase;
  text-align: left;
  font-family: "Montserrat", "Poppins", Arial, sans-serif;
  font-weight: 800;
  line-height: 1.1;
}

.hero-1 .hero-content .hero-wrapper .hero-right-content {
  position: absolute;
  right: 0;
  
  bottom: 0;
  z-index: 2;
}

.hero-1 .hero-content .hero-wrapper .hero-box {
  border-radius: 12px;
  backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s ease;
}

.hero-1 .hero-content .hero-wrapper .hero-box:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1)) !important;
  border: 1px solid rgba(230, 120, 23, 0.4);
  box-shadow: 0 8px 32px 0 rgba(230, 120, 23, 0.15);
}@media (min-width: 1600px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 60px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    right: 60px;
    bottom: 40px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 60vw;
    max-width: 900px;
    padding: 35px;
  }
}@media (min-width: 1400px) and (max-width: 1599px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 52px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    right: 50px;
    bottom: 30px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 60vw;
    max-width: 850px;
    padding: 32px;
  }
}@media (min-width: 1200px) and (max-width: 1399px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 46px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    right: 40px;
    bottom: 20px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 65vw;
    max-width: 800px;
    padding: 30px;
  }
}@media (min-width: 992px) and (max-width: 1199px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 42px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    right: 30px;
    bottom: 20px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 70vw;
    max-width: 750px;
    padding: 28px;
  }
}@media (min-width: 768px) and (max-width: 991px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content {
    position: static;
    transform: none;
    margin-bottom: 30px;
    width: 100%;
    
  }

  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 38px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    position: relative;
    right: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 75vw;
    max-width: 650px;
    padding: 25px;
  }
}@media (min-width: 576px) and (max-width: 767px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content {
    position: static;
    transform: none;
    margin-bottom: 20px;
    width: 100%;
  }

  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 34px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 90%;
    max-width: 550px;
    padding: 22px;
    margin: 0 auto;
  }
}@media (min-width: 480px) and (max-width: 575px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content {
    position: static;
    transform: none;
    margin-bottom: 20px;
    width: 100%;
  }

  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 32px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 95%;
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
  }
}@media (min-width: 375px) and (max-width: 479px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content {
    position: static;
    transform: none;
    margin-bottom: 15px;
    width: 100%;
  }

  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 30px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 100%;
    max-width: 100%;
    padding: 18px;
    margin: 0 auto;
  }
}@media (min-width: 320px) and (max-width: 374px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content {
    position: static;
    transform: none;
    margin-bottom: 15px;
    width: 100%;
  }

  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 28px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 100%;
    max-width: 100%;
    padding: 15px;
    margin: 0 auto;
  }
}@media (max-width: 319px) {
  .hero-1 .hero-content .hero-wrapper .hero-left-content {
    position: static;
    transform: none;
    margin-bottom: 12px;
    width: 100%;
  }

  .hero-1 .hero-content .hero-wrapper .hero-left-content h1 {
    font-size: 26px;
  }

  .hero-1 .hero-content .hero-wrapper .hero-right-content {
    position: relative;
    right: auto;
    bottom: auto;
  }

  .hero-1 .hero-content .hero-wrapper .hero-box {
    width: 100%;
    max-width: 100%;
    padding: 12px;
    margin: 0 auto;
  }
}.hero-1 .hero-content .hero-wrapper .hero-box .top-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  bottom: auto;
  right: auto;
  left: auto;
  width: 100%;
  gap: 12px;
}

.hero-1 .hero-content .hero-wrapper .hero-box .top-item h4 {
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-1 .hero-content .hero-wrapper .hero-box .hero-item .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
  clip-path: inset(0 round 12px);
  position: relative;
  z-index: 1;
}.hero-1 .hero-content .hero-wrapper .hero-box .hero-item:hover .hero-image img {
  transform: translateY(-8px) scale(1.06) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(230, 120, 23, 0.4);
}

.hero-1 .hero-content .hero-wrapper .hero-box .hero-item {
  position: relative;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  perspective: 2000px;
  border-radius: 12px;
  isolation: isolate;
  backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  clip-path: inset(0 round 12px);
  transform-style: preserve-3d;
  background: black;
  transform: none !important;
}.hero-1 .hero-content .hero-wrapper .hero-box .hero-item:hover {
  z-index: 10;
}.hero-1 .hero-content .hero-wrapper .hero-box .hero-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 3;
}

.hero-1 .hero-content .hero-wrapper .hero-box .hero-item:hover::after {
  opacity: 1;
}.hero-1 .hero-content .hero-wrapper .hero-box .hero-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: all 0.75s ease;
  z-index: 2;
  pointer-events: none;
}

.hero-1 .hero-content .hero-wrapper .hero-box .hero-item:hover::before {
  left: 150%;
}

@media (max-width: 767px) {
  .hero-1 .hero-content .hero-wrapper .hero-box .hero-item .hero-image {
    height: 200px;
  }
}

.hero-1 .hero-content .hero-wrapper .hero-box .hero-item h6 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
  font-family: "Barlow", sans-serif;
}.hero-1 .hero-content .hero-wrapper.hero-layout-custom {
  display: grid;
  grid-template-columns: minmax(320px, 1.25fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 720px;
  padding: 70px 0 55px;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-left-content {
  position: relative !important;
  max-width: 680px;
  z-index: 2;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-right-content {
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  align-self: end;
  margin-bottom: 80px;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box {
  position: relative;
  width: 100%;
  padding: 42px;
  border-radius: 36px;
  background: rgba(8, 6, 14, 0.72) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.52);
  max-width: 100%;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(230, 120, 23, 0.12));
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box>* {
  position: relative;
  z-index: 1;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .swiper {
  width: 100% !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .hero-item {
  border-radius: 24px !important;
  overflow: hidden !important;
  background: #09070e;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .hero-image {
  height: 360px;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .hero-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 24px !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-left-content h2,
.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-left-content p {
  margin: 0 0 24px !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-left-content p {
  max-width: 640px !important;
  opacity: 0.92 !important;
  line-height: 1.88 !important;
  font-size: 1.08rem !important;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content .hero-wrapper.hero-layout-custom {
    display: block;
    min-height: auto;
  }

  .hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-left-content,
  .hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-right-content {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box {
    padding: 32px;
    margin-top: 24px;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content .hero-wrapper.hero-layout-custom {
    padding: 50px 0 40px;
  }

  .hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-left-content h1 {
    font-size: clamp(2.8rem, 10vw, 4rem) !important;
  }

  .hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box {
    padding: 28px;
    border-radius: 28px;
  }

  .hero-box.hero-reference-slider .hero-image {
    height: 280px;
  }

  .hero-feature-list {
    grid-template-columns: 1fr;
  }
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(230, 120, 23, 0.15));
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .top-item,
.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-luxury-actions {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-luxury-actions {
  margin-top: 18px !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .top-item h4 {
  color: #e67817 !important;
  font-family: 'Onest', sans-serif !important;
  font-size: 11px !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.55em !important;
  font-weight: 900 !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: #e67817 !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .hero-item .hero-image img {
  width: 100% !important;
  height: 280px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 24px !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .swiper {
  width: 100% !important;
  overflow: hidden !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .swiper-wrapper {
  align-items: center !important;
}

.hero-1 .hero-content .hero-wrapper.hero-layout-custom .hero-box .hero-item:hover {
  transform: none !important;
}

.index-transparent-header:not(.sticky) {
  background-color: transparent !important;
  backdrop-filter: none !important;
}

.index-transparent-header:not(.sticky) .header-main {
  padding: 6px 0 !important;
}

.index-transparent-header:not(.sticky) .header-logo img {
  height: 95px !important;
  width: auto !important;
  transition: all 0.3s ease-in-out;
}

.luxury-badge-custom {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.luxury-badge-custom .line {
  width: 40px;
  height: 1px;
  background: rgba(230, 120, 23, 0.5);
}

.luxury-badge-custom .text {
  color: #e67817;
  font-family: 'Onest', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 11px;
}

.hero-headline-luxury {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(3.5rem, 8vw, 6.5rem) !important;
  color: #ffffff !important;
  line-height: 1 !important;
  margin-bottom: 20px !important;
  text-transform: none !important;
}

.gold-gradient-text {
  background: linear-gradient(90deg, #e67817 0%, #ffb067 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  font-style: italic;
  font-weight: 300;
}

.luxury-btn-custom {
  background: linear-gradient(135deg, #e67817 0%, #ffb067 100%) !important;
  color: #fff !important;
  padding: 16px 36px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: all 0.4s ease !important;
  border: none !important;
  box-shadow: 0 10px 20px rgba(230, 120, 23, 0.3) !important;
}

.luxury-btn-outline-custom {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  padding: 16px 36px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  font-size: 13px !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: all 0.4s ease !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.luxury-glass-panel {
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 12, 0.82), rgba(6, 6, 12, 0.62)),
    url('../img/home-1/hero/color-bg.png');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(234, 153, 55, 0.16) !important;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px) !important;
  border-radius: 44px !important;
  padding: 44px !important;
}

.hero-copy-stack {
  max-width: 540px;
}

.hero-kicker-row span {
  display: inline-block;
  color: #e67817;
  font-family: 'Onest', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 14px 26px;
  margin: 24px 0 0;
  padding: 0;
}

.hero-feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.6;
}

.hero-feature-list li i {
  color: #e67817;
  min-width: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
}

.hero-box.hero-reference-slider {
  background-image: url("../img/home-1/hero/color-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-box.hero-reference-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.08) 18%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
  border-radius: 36px;
}

.hero-box.hero-reference-slider::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 12px;
  height: 12px;
  background: #e67817;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(230, 120, 23, 0.35);
  z-index: 1;
}

.hero-box.hero-reference-slider>* {
  position: relative;
  z-index: 1;
}

.hero-box.hero-reference-slider .hero-item {
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
}

.hero-box.hero-reference-slider .hero-image {
  height: 340px;
}

.hero-box.hero-reference-slider .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-box.hero-reference-slider .hero-slider {
  padding-bottom: 10px;
}

.hero-section-1.hero-1 {
  padding-top: 170px !important;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
}

.hero-section-1.hero-1::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(900px 520px at 18% 40%, rgba(230, 120, 23, 0.14), transparent 62%),
    radial-gradient(760px 520px at 86% 78%, rgba(128, 0, 255, 0.18), transparent 58%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 25%, rgba(230, 120, 23, 0.18), transparent 25%),
    radial-gradient(circle at 82% 70%, rgba(128, 0, 255, 0.16), transparent 22%),
    linear-gradient(180deg, #07050b 0%, #09060f 26%, #09070f 100%),
    url("../img/home-1/hero/IMG_0314.jpg");
  background-size: cover;
  background-position: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.74) 0%, rgba(0, 0, 0, 0.32) 30%, rgba(0, 0, 0, 0.22) 50%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 1;
}

.hero-content,
.hero-wrapper.hero-layout-custom {
  position: relative;
  z-index: 2;
}

.hero-left-content h2.hero-subtitle {
  margin-top: 18px !important;
  margin-bottom: 24px !important;
}

.hero-left-content p.hero-description {
  max-width: 640px !important;
  font-size: 1.08rem !important;
  line-height: 1.9 !important;
  opacity: 0.92 !important;
  margin-bottom: 32px !important;
}

.hero-luxury-actions {
  display: flex !important;
  gap: 18px !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
}

.hero-box .top-item {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 28px !important;
}

.hero-box .top-item h4 {
  color: #e67817 !important;
  font-family: 'Onest', sans-serif !important;
  font-size: 11px !important;
  margin: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5em !important;
  font-weight: 900 !important;
}

.hero-box .dot {
  background-color: #e67817 !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
}

.hero-box .hero-item {
  border-radius: 24px !important;
  overflow: hidden !important;
}

.hero-box .hero-item .hero-image img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 24px !important;
}

.fixed-height-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: opacity 0.5s ease-in-out;
}

.category-list li {
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-list li.active {
  background-color: #f8f9fa;
  border-left: 4px solid var(--theme);
}

.category-list li.active a {
  color: var(--theme) !important;
  font-weight: bold;
}

.category-list li:hover {
  background-color: #f1f1f1;
}

@media (max-width: 991px) {
  .service-main-sideber {
    margin-bottom: 20px;
  }

  .single-sideber-widget {
    padding: 20px !important;
  }

  .widget-title h3 {
    font-size: 20px;
  }

  .category-list li {
    padding: 12px 15px !important;
    margin-bottom: 8px !important;
  }

  .fixed-height-image {
    height: 380px !important;
  }
}

@media (max-width: 575px) {
  .fixed-height-image {
    height: 300px !important;
  }

  .category-list li a {
    font-size: 14px;
  }
}

.hero-button-item {
  background-image: url(../img/home-1/about/radial-bg.jpg);
  background-size: cover;
  background-position: center;
}

.testimonial-section.bg-cover {
  background-image: url(../img/home-1/testimonial/bg.jpg);
}

.brand-section.style-2 {
  padding: 100px 0;
  background: linear-gradient(180deg, #111111 0%, #050505 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-section.style-2 .glow-overlay {
  background: rgba(230, 120, 23, 0.05);
  filter: blur(100px);
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: 0;
  width: 75%;
  height: 130px;
}

.section-title .sub-title.luxury-badge-custom {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.section-title .sub-title.luxury-badge-custom .line {
  width: 40px;
  height: 1px;
  background: rgba(230, 120, 23, 0.5);
  display: inline-block;
}

.section-title .sub-title.luxury-badge-custom .text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 11px;
  color: #e67817;
  margin: 0 15px;
}

.brand-section.style-2 .section-title .sec-title {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(3rem, 5vw, 4.5rem) !important;
  color: #fff8ef !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
  font-weight: 500 !important;
}

.brand-section.style-2 .section-title .gold-gradient-text {
  font-size: inherit !important;
  display: inline-block;
}

.brand-section.style-2 .section-title p {
  font-family: 'Manrope', sans-serif !important;
  color: rgba(247, 241, 228, 0.78) !important;
  font-size: 18px !important;
  max-width: 650px !important;
  margin: 0 auto !important;
  line-height: 1.8 !important;
}

.brand-divider {
  width: 60px;
  height: 3px;
  background: #e67817;
  margin: 30px auto 0;
}

.footer-logo img {
  max-width: 170px;
}

.footer-logo+.text {
  margin-top: 30px;
}

.footer-links.footer-social-links {
  margin-top: 35px;
}

.footer-copyright-text p {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-2 {
  padding-top: 270px;
  padding-bottom: 120px;
  position: relative;
}

@media (max-width: 1399px) {
  .hero-2 {
    padding-top: 140px;
  }
}

@media (max-width: 991px) {
  .hero-2 {
    padding-top: 130px;
    padding-bottom: 80px;
  }
}

.hero-2 .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-2 .hero-video video {
  width: 100%;
  height: 992px;
  object-fit: cover;
}

.hero-2 .hero-list {
  display: flex;
  align-items: center;
  gap: 30px;
  position: absolute;
  left: 100px;
  bottom: 0;
}

@media (max-width: 991px) {
  .hero-2 .hero-list {
    display: none;
  }
}

.hero-2 .hero-list li {
  background-color: var(--theme);
  color: var(--white);
  border-radius: 6px 6px 0 0;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
}

.hero-2 .hero-list li.style-2::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 30px;
  background-color: var(--theme);
  left: -20px;
  top: 15px;
}

.hero-2 .container-fluid {
  padding: 0 100px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 1600px) {
  .hero-2 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-2 .container-fluid {
    padding: 0 30px;
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .hero-2 .container-fluid {
    padding: 0 15px;
  }
}

.hero-2 .from-box {
  border-radius: 6px;
  max-width: 614px;
  padding: 40px 27px;
  margin-top: 100px;
  width: 100%;
  flex: 0 0 auto;
  position: relative;
}

@media (max-width: 1399px) {
  .hero-2 .from-box {
    padding: 30px 25px;
    max-width: initial;
    margin-top: 0;
  }
}

.hero-2 .from-box h2 {
  font-size: 40px;
  color: var(--white);
}

@media (max-width: 575px) {
  .hero-2 .from-box h2 {
    font-size: 26px;
  }
}

.hero-2 .from-box .form-clt {
  margin-top: 30px;
}

.hero-2 .from-box .form-clt span {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  font-family: "Gilda Display", serif;
  color: var(--white);
  margin-bottom: 10px;
}

.hero-2 .from-box .form-clt input {
  border: none;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid var(--white);
  padding-bottom: 12px;
  color-scheme: dark;
}

.hero-2 .from-box .form-clt input::placeholder {
  color: var(--white);
}

.hero-2 .from-box .form-clt .form .single-select {
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--white);
  border-radius: 0;
  padding: 0;
  padding-bottom: 19px;
  line-height: initial;
  height: initial;
}

.hero-2 .from-box .form-clt .form .single-select span {
  margin-bottom: 0;
}

.hero-2 .from-box .form-clt .form .single-select .list {
  width: 100%;
}

.hero-2 .from-box .form-clt .form .single-select::after {
  width: 8px;
  height: 8px;
  top: 33%;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
}

.hero-2 .from-box .form-clt .gt-theme-btn::before {
  width: 82%;
}

.hero-2 .from-box .form-clt .gt-theme-btn:hover {
  color: var(--header);
}

.hero-2 .from-box .form-clt .gt-theme-btn:hover::before {
  height: 2000%;
  background-color: var(--white);
}

.hero-2 .from-box .theme-btn {
  background-color: var(--white);
  color: var(--header);
  justify-content: center;
}

.hero-2 .from-box .theme-btn::before {
  transform: rotate(-25deg);
}

.hero-2 .from-box .theme-btn:hover {
  color: var(--white);
}

.hero-3 {
  border-radius: 20px;
  position: relative;
  z-index: 9;
  margin: 50px 40px 0;
  padding: 100px 0 0;
}

@media (max-width: 1399px) {
  .hero-3 {
    margin: 0px 30px 0;
    padding-bottom: 100px;
    padding-top: 150px;
  }
}

@media (max-width: 991px) {
  .hero-3 {
    padding: 140px 0 0;
    padding-bottom: 0;
  }
}

@media (max-width: 575px) {
  .hero-3 {
    margin: 0px 15px 0;
  }
}

.hero-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, rgba(170, 132, 83, 0) 0%, rgba(28, 28, 28, 0.8) 50%, #1C1C1C 95.19%);
  z-index: -1;
}

.hero-3 .container-fluid {
  padding: 0 74px;
}

@media (max-width: 1899px) {
  .hero-3 .container-fluid {
    padding: 0 60px;
  }
}

@media (max-width: 1600px) {
  .hero-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 575px) {
  .hero-3 .container-fluid {
    padding: 0 15px;
  }
}

.hero-3 .hero-image {
  margin-left: -75px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-image {
    margin-left: 0;
  }
}

@media (max-width: 1600px) {
  .hero-3 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.hero-3 .hero-content h1 {
  color: var(--white);
  font-size: 72px;
  margin-bottom: 50px;
}

@media (max-width: 1899px) {
  .hero-3 .hero-content h1 {
    font-size: 60px;
  }
}

@media (max-width: 1600px) {
  .hero-3 .hero-content h1 {
    font-size: 55px;
  }
}

@media (max-width: 1399px) {
  .hero-3 .hero-content h1 {
    margin-bottom: 30px;
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  .hero-3 .hero-content h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content h1 {
    font-size: 30px;
  }
}

.hero-3 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content .hero-button {
    flex-wrap: wrap;
  }
}

.hero-3 .hero-content .hero-button .theme-btn.style-border {
  background-color: transparent;
  border: 1.2px solid rgba(255, 255, 255, 0.2);
}

.hero-3 .hero-content .hero-button .theme-btn.style-border::before {
  background-color: var(--theme);
}

.hero-3 .hero-content .hero-button .theme-btn.style-border:hover {
  border: 1px solid var(--theme);
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  padding: 15px 0;
  background-color: var(--header);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: scroll 60s linear infinite;
  flex-shrink: 0;
}

.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
}

.scrolling-wrap .comm .cmn-textslide {
  font-size: 25px;
  font-weight: 400;
  line-height: 36px;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Gilda Display", serif;
  display: flex;
  align-items: center;
  gap: 15px;
}

.scrolling-wrap .comm .cmn-textslide i {
  font-size: 21px;
  color: var(--theme);
}

.scrolling-wrap:hover .marquee-track {
  animation-play-state: paused;
}

@media (max-width: 1399px) {

  .scrolling-wrap .comm,
  .marquee-track {
    gap: 20px;
  }
}

@media (max-width: 991px) {

  .scrolling-wrap,
  .marquee-track {
    gap: 14px;
  }

  .scrolling-wrap .comm {
    gap: 14px;
  }
}

@media (max-width: 575px) {
  .scrolling-wrap .comm {
    gap: 12px;
  }
}.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  font-weight: 700;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li .submenu li a {
  border-bottom: none !important;
  font-size: 14px;
  padding: 6px 0;
  color: var(--header);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.news-wrapper {
  border-top: 1px solid rgba(28, 28, 28, 0.2);
  padding-top: 48px;
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .news-wrapper {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.news-wrapper .news-list {
  padding: 0;
  margin: 0;
  list-style: none;
  overflow: hidden;
}

.news-wrapper .news-list .news-service {
  padding: 30px 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.2);
  background: linear-gradient(to bottom, var(--header) 0%, var(--header) 98%);
  background-size: 0;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: background-size 0.8s;
}

@media (max-width: 1399px) {
  .news-wrapper .news-list .news-service {
    padding: 26px 0;
  }
}

@media (max-width: 991px) {
  .news-wrapper .news-list .news-service {
    padding: 30px 0;
  }
}

.news-wrapper .news-list .news-service .tag {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
  transition: 0.7s;
}

@media (max-width: 1399px) {
  .news-wrapper .news-list .news-service .tag {
    margin-bottom: 12px;
  }
}

@media (max-width: 991px) {
  .news-wrapper .news-list .news-service .tag {
    margin-bottom: 20px;
  }
}

.news-wrapper .news-list .news-service .tag span.style-2 {
  position: relative;
}

.news-wrapper .news-list .news-service .tag span.style-2::before {
  position: absolute;
  content: "";
  background-color: var(--theme);
  left: -10px;
  display: inline-block;
  width: 4px;
  height: 4px;
  top: 12px;
  border-radius: 100px;
}

.news-wrapper .news-list .news-service .news-content {
  transition: 0.7s;
}

@media (max-width: 1399px) {
  .news-wrapper .news-list .news-service .news-content h3 {
    font-size: 24px;
  }
}

@media (max-width: 991px) {
  .news-wrapper .news-list .news-service .news-content h3 {
    font-size: 20px;
  }
}

.news-wrapper .news-list .news-service .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-wrapper .news-list .news-service .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-wrapper .news-list .news-service:hover {
  background-size: 100%;
  background-position: 0% 100%;
  color: var(--white);
}

.news-wrapper .news-list .news-service:hover .tag {
  transform: translateX(40px);
}

.news-wrapper .news-list .news-service:hover .tag span.style-2::before {
  background-color: var(--white);
}

.news-wrapper .news-list .news-service:hover .news-content {
  transform: translateX(40px);
}

.news-wrapper .news-list .news-service:hover .news-content h3 a {
  color: var(--theme);
}

.news-wrapper .news-img-group {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 991px) {
  .news-wrapper .news-img-group {
    display: none;
    visibility: hidden;
  }
}

.news-wrapper .news-img-group li {
  position: relative;
}

.news-wrapper .news-img-group li .news-img {
  min-height: 685px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: qodef-animate-image-out 1s 0.1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 12;
}

@media (max-width: 1399px) {
  .news-wrapper .news-img-group li .news-img {
    min-height: 602px;
  }
}

@media (max-width: 1199px) {
  .news-wrapper .news-img-group li .news-img {
    min-height: 567px;
  }
}

.news-wrapper .news-img-group li .news-img img {
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.news-wrapper .news-img-group li.active .news-img {
  animation: qodef-animate-image-in 1s cubic-bezier(0.78, 0.2, 0.21, 0.88) forwards;
  z-index: 15;
}

@keyframes qodef-animate-image-out {
  0% {
    transform: scale(1) translateZ(0);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }

  100% {
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes qodef-animate-image-in {
  0% {
    transform: scale(1.05) translateZ(0);
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }

  100% {
    transform: scale(1);
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

.news-card-items-2 {
  border-radius: 8px;
  background-color: #F8F8F8;
  margin-top: 30px;
}

.news-card-items-2 .news-image {
  position: relative;
  height: 316px;
}

.news-card-items-2 .news-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  object-fit: cover;
}

.news-card-items-2 .news-image .post-box {
  border-radius: 4px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: var(--theme);
  padding: 8px 4px;
  position: absolute;
  left: 24px;
  bottom: -30px;
}

.news-card-items-2 .news-image .post-box h4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
}

.news-card-items-2 .news-image .post-box h4 span {
  font-size: 14px;
  font-weight: 400;
  font-family: "Barlow", sans-serif;
  line-height: 1;
  color: var(--white);
}

.news-card-items-2 .news-content {
  padding: 5px 24px 24px;
}

.news-card-items-2 .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 15px;
  margin-left: 75px;
}

.news-card-items-2 .news-content .news-meta li {
  position: relative;
}

.news-card-items-2 .news-content .news-meta li img {
  margin-right: 5px;
}

.news-card-items-2 .news-content .news-meta li.style-2::before {
  position: absolute;
  content: "";
  background-color: var(--theme);
  width: 8px;
  height: 8px;
  border-radius: 30px;
  top: 10px;
  left: -15px;
}

.news-card-items-2 .news-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-card-items-2 .news-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items-2 .news-content .link-btn {
  display: inline-block;
  margin-top: 24px;
  color: var(--theme);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--theme);
}

.news-card-items-3 {
  margin-top: 30px;
}

.news-card-items-3 .news-image {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.news-card-items-3 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-card-items-3 .news-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  border-radius: 10px;
}

.news-card-items-3 .news-content {
  margin-top: 30px;
}

.news-card-items-3 .news-content .tag {
  display: flex;
  align-items: center;
  gap: 15px;
}

.news-card-items-3 .news-content .tag span {
  color: #1C1C1C;
  position: relative;
  display: inline-block;
}

.news-card-items-3 .news-content .tag span.style-2 {
  padding-left: 15px;
}

.news-card-items-3 .news-content .tag span.style-2::before {
  position: absolute;
  content: "";
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 30px;
  background-color: var(--theme);
}

.news-card-items-3 .news-content h3 {
  margin-top: 20px;
}

.news-card-items-3 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-card-items-3 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items-3:hover .news-image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.news-card-items-3:hover .news-image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.news-standard-wrapper .news-card-items-4 {
  margin-bottom: 48px;
}

.news-standard-wrapper .news-card-items-4 .news-image {
  overflow: hidden;
  border-radius: 16px;
}

.news-standard-wrapper .news-card-items-4 .news-image img {
  width: 100%;
  height: 100%;
  transform: scale(1.02);
  transition: all 1.5s ease-out;
  border-radius: 16px;
}

.news-standard-wrapper .news-card-items-4 .news-content .date-list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 15px;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-card-items-4 .news-content .date-list {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.news-standard-wrapper .news-card-items-4 .news-content .date-list li i {
  margin-right: 10px;
}

.news-standard-wrapper .news-card-items-4 .news-content h3 {
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
}

@media (max-width: 1199px) {
  .news-standard-wrapper .news-card-items-4 .news-content h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .news-standard-wrapper .news-card-items-4 .news-content h3 {
    font-size: 25px;
  }
}

.news-standard-wrapper .news-card-items-4 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-standard-wrapper .news-card-items-4 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-standard-wrapper .news-card-items-4 .news-content .theme-btn {
  margin-top: 24px;
}

.news-standard-wrapper .news-card-items-4:hover .news-image img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
  transform: scale3d(1.1, 1.1, 1);
}

.main-sideber .single-sideber-widget {
  margin-bottom: 40px;
  background-color: var(--bg-3);
  padding: 30px;
  border-radius: 16px;
}

.main-sideber .single-sideber-widget .search-widget form {
  width: 100%;
  position: relative;
}

.main-sideber .single-sideber-widget .search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
}

.main-sideber .single-sideber-widget .search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 58px;
  border-radius: 8px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.main-sideber .single-sideber-widget .search-widget form button:hover {
  background-color: var(--header);
}

.main-sideber .single-sideber-widget .widget-title {
  border-bottom: 1.5px solid rgba(129, 129, 129, 0.24);
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.main-sideber .single-sideber-widget .widget-title h3 {
  font-weight: 800;
}

.main-sideber .single-sideber-widget .amenities-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
}

.main-sideber .single-sideber-widget .amenities-list li:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 18px 22px;
  line-height: 1;
  border-radius: 8px;
}

.main-sideber .single-sideber-widget .category-list li a {
  color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}

.main-sideber .single-sideber-widget .category-list li:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .category-list li span b {
  font-weight: 400;
  color: var(--theme);
}

.main-sideber .single-sideber-widget .category-list li:hover {
  background-color: var(--theme);
}

.main-sideber .single-sideber-widget .category-list li:hover a {
  color: var(--white);
}

.main-sideber .single-sideber-widget .category-list li:hover i,
.main-sideber .single-sideber-widget .category-list li:hover span {
  color: var(--white);
}

.main-sideber .single-sideber-widget .hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-sideber .single-sideber-widget .hours-list li:not(:last-child) {
  margin-bottom: 18px;
}

.main-sideber .single-sideber-widget .hours-list li span {
  font-weight: 500;
  color: var(--header);
}

.main-sideber .single-sideber-widget .hours-list li b {
  font-weight: 500;
  color: var(--theme);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1199px) {
  .main-sideber .single-sideber-widget .recent-post-area .recent-items {
    flex-wrap: wrap;
  }
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 12px;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h5 {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h5 a:hover {
  color: var(--theme);
}

.main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--text);
  font-weight: 500;
}

.main-sideber .single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 12px;
  line-height: 1;
  font-weight: 400;
  background: var(--white);
  margin-right: 6px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 4px;
}

.main-sideber .single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}

.main-sideber .single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.main-sideber .service-details-sidebar {
  text-align: center;
  padding: 50px 40px;
  border-radius: 16px;
}

.main-sideber .service-details-sidebar .content {
  margin-top: 20px;
}

.main-sideber .service-details-sidebar .content span {
  color: var(--white);
  opacity: 0.88;
}

.main-sideber .service-details-sidebar .content h3 {
  margin-top: 10px;
}

.main-sideber .service-details-sidebar .content h3 a {
  color: var(--white);
}

.main-sideber .service-details-sidebar .content .theme-btn {
  margin-top: 30px;
  background-color: var(--theme);
  color: var(--header);
}

.main-sideber .service-details-sidebar .content .theme-btn::before {
  background-color: var(--theme);
}

.main-sideber .service-details-sidebar .content .theme-btn:hover {
  color: var(--white);
}

.news-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.news-details-wrapper .news-details-content {
  margin-top: 24px;
}

.news-details-wrapper .news-details-content h3 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 800;
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-content h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .news-details-wrapper .news-details-content h3 {
    font-size: 25px;
  }
}

.news-details-wrapper .news-details-content .list {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 0;
}

.news-details-wrapper .news-details-content .list .list-item {
  margin-bottom: 30px;
}

.news-details-wrapper .news-details-content .list .list-item h3 {
  font-size: 24px;
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-content .list .list-item h3 {
    font-size: 20px;
  }
}

.news-details-wrapper .news-details-content .list .list-item .details-list {
  margin-top: 20px;
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-content .list .list-item .details-list {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.news-details-wrapper .news-details-content .list .list-item .details-list li {
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
}

.news-details-wrapper .news-details-content .list .list-item .details-list li:not(:last-child) {
  margin-bottom: 20px;
}

.news-details-wrapper .news-details-content .list .list-item .details-list li i {
  color: var(--theme);
  margin-right: 8px;
}

.news-details-wrapper .news-details-content .sideber {
  padding: 30px 40px;
  border: 1.5px solid var(--theme);
  background-color: var(--bg);
  border-radius: 16px;
  margin-top: 20px;
}

@media (max-width: 575px) {
  .news-details-wrapper .news-details-content .sideber {
    padding: 30px;
  }
}

.news-details-wrapper .news-details-content .sideber h6 {
  margin-bottom: 15px;
  line-height: 150%;
  letter-spacing: 0.5px;
  font-weight: 500;
  font-size: 20px;
}

.news-details-wrapper .news-details-content .sideber .client-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-content .sideber .client-info-item {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.news-details-wrapper .news-details-content .sideber .client-info-item .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.news-details-wrapper .news-details-content .sideber .client-info-item .client-info .image {
  border-radius: 100%;
}

.news-details-wrapper .news-details-content .sideber .client-info-item .client-info h4 {
  font-size: 20px;
  font-weight: 700;
}

.news-details-wrapper .news-details-content .news-title {
  font-size: 24px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 15px;
  font-family: "Barlow", sans-serif;
}

.news-details-wrapper .news-details-content .text {
  font-size: 24px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-content .text {
    font-size: 20px;
  }
}

.news-details-wrapper .news-details-content .tag-share-wrap {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
  padding: 30px 0;
}

.news-details-wrapper .news-details-content .tag-share-wrap .tagcloud span {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  color: var(--header);
  font-family: "Gilda Display", serif;
  margin-right: 15px;
}

.news-details-wrapper .news-details-content .tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 14px 26px;
  line-height: 1;
  background: var(--bg);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-content .tag-share-wrap .tagcloud a {
    padding: 10px 20px;
  }
}

@media (max-width: 1199px) {
  .news-details-wrapper .news-details-content .tag-share-wrap .tagcloud a {
    margin-bottom: 15px;
  }
}

.news-details-wrapper .news-details-content .tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.news-details-wrapper .news-details-content .tag-share-wrap .social-share a {
  font-size: 16px;
  color: var(--header);
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: var(--bg);
  border-radius: 8px;
}

.news-details-wrapper .news-details-content .tag-share-wrap .social-share a:not(:last-child) {
  margin-right: 10px;
}

.news-details-wrapper .news-details-content .tag-share-wrap .social-share a:hover {
  color: var(--white);
  background-color: var(--theme);
}

.news-details-wrapper .news-details-content .comments-area {
  margin-top: 40px;
}

.news-details-wrapper .news-details-content .comments-area h3 {
  font-size: 28px;
}

.news-details-wrapper .news-details-content .comments-area .blog-single-comment {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}

@media (max-width: 575px) {
  .news-details-wrapper .news-details-content .comments-area .blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.news-details-wrapper .news-details-content .comments-area .blog-single-comment .content .head .con h5 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 20px;
}

.news-details-wrapper .news-details-content .comments-area .blog-single-comment .content .reply {
  padding: 5px 18px;
  font-weight: 400;
  background-color: var(--theme);
  color: var(--white);
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
}

.news-details-wrapper .news-details-content .comments-area .blog-single-comment .content .reply:hover {
  background-color: var(--header);
}

.news-details-wrapper .news-details-content .comment-form-wrap {
  background-color: var(--bg);
  padding: 30px;
  border-radius: 16px;
}

.news-details-wrapper .news-details-content .comment-form-wrap h3 {
  margin-bottom: 30px;
  border-bottom: 1.2px solid rgba(102, 102, 102, 0.24);
  padding-bottom: 24px;
  margin-bottom: 24px;
  font-size: 28px;
}

.news-details-wrapper .news-details-content .comment-form-wrap .form-clt span {
  color: var(--header);
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Gilda Display", serif;
}

.news-details-wrapper .news-details-content .comment-form-wrap .form-clt input,
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--border);
  padding: 16px 20px;
  font-weight: 400;
  color: var(--text);
  background-color: var(--white);
  border-radius: 8px;
}

.news-details-wrapper .news-details-content .comment-form-wrap .form-clt input::placeholder,
.news-details-wrapper .news-details-content .comment-form-wrap .form-clt textarea::placeholder {
  color: var(--text);
}

.news-details-wrapper .news-details-content .comment-form-wrap .form-clt textarea {
  padding-bottom: 100px;
  resize: none;
}#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.1s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  animation: pulse 2s infinite ease-in-out;
}.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #ddd;
  border-top: 3px solid #e67817;
  
  border-radius: 50%;
  margin: 0 auto 15px;
  animation: spin 1.2s linear infinite;
}#preloader p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #555;
  letter-spacing: 0.5px;
}@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

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

  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 40px;
  border-radius: 100px;
  color: var(--white);
  font-size: 16px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

@media (max-width: 575px) {
  .back-to-top {
    display: none;
  }
}

.back-to-top:hover {
  background-color: var(--white);
  color: var(--theme);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}

.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../img/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}

.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}

.search-popup__form .search-btn:hover {
  background-color: var(--black);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 9999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}

.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.room-section {
  position: relative;
  z-index: 1;
}

.room-section .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  right: 40px;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 1600px) {
  .room-section .bg-image {
    left: 0;
    right: 0;
  }
}

.room-section .bg-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.room-section .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.7);
  overflow: hidden;
  z-index: 9;
}

.room-section .section-title-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 30px;
  margin-bottom: 48px;
}

.room-section .section-title-area .section-title p {
  max-width: 690px;
}

.room-section .room-slider {
  margin-left: -200px;
  margin-right: -200px;
  position: relative;
  z-index: 999;
}

@media (max-width: 1399px) {
  .room-section .room-slider {
    margin-left: 0;
    margin-right: 0;
  }
}

.room-box-item {
  border-radius: 0 0 8px 8px;
  position: relative;
  z-index: 9;
}

.room-box-item .room-image {
  position: relative;
  overflow: hidden;
}

.room-box-item .room-image img {
  width: 100%;
  height: 300px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.room-box-item .room-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.room-box-item .room-image span {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  border-radius: 6px;
  background-color: var(--theme);
  position: absolute;
  left: 25px;
  top: 45px;
  padding: 6px 12px;
  z-index: 999;
}

.room-box-item .content-item {
  background: var(--white);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.room-box-item .content-item .room-content {
  padding: 30px;
}

.room-box-item .content-item .room-content h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme);
  display: inline-block;
  border-radius: 6px;
  border: 1px solid rgba(170, 132, 83, 0.2);
  padding: 5px 10px;
  margin-bottom: 20px;
}

.room-box-item .content-item .room-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.room-box-item .content-item .room-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.room-box-item .content-item .room-content .list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .room-box-item .content-item .room-content .list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.room-box-item .content-item .room-content .list li {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  gap: 10px;
  color: #434343;
}

.room-box-item .content-item .room-content .list li i {
  font-size: 18px;
  line-height: 1;
  color: var(--theme);
}

.room-box-item .content-item .theme-btn {
  justify-content: space-between;
  width: 100%;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 16px 30px;
  background-color: var(--header);
}

.room-box-item .content-item .theme-btn::before {
  background-color: var(--theme);
  transform: rotate(-30deg);
  left: -40px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 0px;
}

.room-box-item:hover .room-image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.room-box-item:hover .room-image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.room-section-2 {
  position: relative;
}

.room-section-2 .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}

.room-section-2 .bg-image img {
  width: 100%;
  height: 100%;
}

.room-section-2 .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(28, 28, 28, 0.85);
  overflow: hidden;
  z-index: 9;
}

.room-section-2 .room-slider-2 {
  margin-left: -200px;
  margin-right: -200px;
  position: relative;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1399px) {
  .room-section-2 .room-slider-2 {
    margin-left: 0;
    margin-right: 0;
  }
}

.room-section-2 .section-title-area .left-content .nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 105px;
}

@media (max-width: 1399px) {
  .room-section-2 .section-title-area .left-content .nav {
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
}

.room-section-2 .section-title-area .left-content .nav li {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

@media (max-width: 1399px) {
  .room-section-2 .section-title-area .left-content .nav li {
    font-size: 16px;
  }
}

.room-section-2 .section-title-area .left-content .nav li .nav-link {
  color: var(--white);
  transition: all 0.4s ease-in-out;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  padding: 0;
}

.room-section-2 .section-title-area .left-content .nav li .nav-link.active {
  position: relative;
  color: var(--theme);
}

.tab-content {
  position: relative;
  z-index: 999;
  margin-top: 48px;
}

@media (max-width: 1399px) {
  .tab-content {
    margin-top: 30px;
  }
}

.tab-content .room-card-items-2 {
  padding: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 9999;
  height: 607px;
  overflow: visible;
  transition: all 0.4s ease;
}

@media (max-width: 1600px) {
  .tab-content .room-card-items-2 {
    height: 450px;
  }
}

@media (max-width: 1399px) {
  .tab-content .room-card-items-2 {
    height: 380px;
  }
}

.tab-content .room-card-items-2 .tag {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  position: absolute;
  top: 60px;
  left: 30px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  padding: 2px 5px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .tab-content .room-card-items-2 .tag {
    left: 10px;
  }
}

.tab-content .room-card-items-2 .tag a {
  color: var(--white);
}

.tab-content .room-card-items-2 .tag i {
  color: var(--white);
  margin-right: 10px;
}

.tab-content .room-card-items-2 .room-image {
  position: absolute;
  width: 160px;
  height: 194px;
  top: 30px;
  right: 30px;
  overflow: hidden;
  border-radius: 6px;
  transition: all 0.6s ease;
  z-index: 3;
  transform-origin: top right;
}

.tab-content .room-card-items-2 .room-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: all 0.6s ease;
}

.tab-content .room-card-items-2 .room-content {
  left: 30px;
  position: absolute;
  bottom: 60px;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1399px) {
  .tab-content .room-card-items-2 .room-content {
    bottom: 30px;
    left: 10px;
  }
}

.tab-content .room-card-items-2 .room-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
  transition: all 0.3s ease;
}

.tab-content .room-card-items-2 .room-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.tab-content .room-card-items-2 .room-content .list {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.tab-content .room-card-items-2 .room-content .list li {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  gap: 10px;
  color: var(--white);
}

.tab-content .room-card-items-2 .room-content .list li i {
  font-size: 18px;
  line-height: 1;
  color: var(--theme);
}

.tab-content .room-card-items-2:hover .tag {
  left: 60px;
  z-index: 999;
}

.tab-content .room-card-items-2:hover .room-content {
  left: 60px;
  z-index: 999;
}

@media (max-width: 1399px) {
  .tab-content .room-card-items-2:hover .room-content {
    left: 30px;
  }
}

.tab-content .room-card-items-2:hover .room-image {
  width: 385px;
  height: 548px;
  transform-origin: top right;
  right: 30px;
  top: 30px;
  z-index: 5;
}

@media (max-width: 1899px) {
  .tab-content .room-card-items-2:hover .room-image {
    width: 350px;
  }
}

@media (max-width: 1600px) {
  .tab-content .room-card-items-2:hover .room-image {
    width: 290px;
    height: 390px;
  }
}

@media (max-width: 1399px) {
  .tab-content .room-card-items-2:hover .room-image {
    width: 270px;
    height: 330px;
  }
}

@media (max-width: 991px) {
  .tab-content .room-card-items-2:hover .room-image {
    width: 300px;
    height: 330px;
  }
}

@media (max-width: 767px) {
  .tab-content .room-card-items-2:hover .room-image {
    width: 250px;
    height: 330px;
  }
}

.tab-content .room-card-items-2:hover .room-image img {
  border-radius: 8px;
  object-fit: cover;
}

.tab-content .array-buttonss {
  justify-content: center;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 999;
}

.tab-content .array-buttonss .array-prev {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}

.tab-content .array-buttonss .array-prev:hover {
  color: var(--white);
}

.tab-content .array-buttonss .array-next {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: all 0.4s ease-in-out;
  text-transform: uppercase;
}

.tab-content .array-buttonss .array-next:hover {
  color: var(--theme);
}

@media (max-width: 1399px) {
  .hotel-dining-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (max-width: 991px) {
  .hotel-dining-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.hotel-dining-wrapper .hotel-dining-content .text {
  margin-top: 20px;
  max-width: 560px;
  margin-bottom: 70px;
}

@media (max-width: 1399px) {
  .hotel-dining-wrapper .hotel-dining-content .text {
    margin-bottom: 30px;
  }
}

.hotel-dining-wrapper .hotel-dining-content .dining-item {
  max-width: 550px;
}

.hotel-dining-wrapper .hotel-dining-content .dining-item .dining-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.hotel-dining-wrapper .hotel-dining-content .dining-item .swiper-slide-next .dining-image img {
  border: 3px solid var(--white);
}

.hotel-dining-wrapper .hotel-dining-content .dining-item .array-buttons {
  margin-top: 60px;
}

@media (max-width: 1399px) {
  .hotel-dining-wrapper .hotel-dining-content .dining-item .array-buttons {
    margin-top: 30px;
  }
}

.hotel-dining-wrapper .hotel-dining-content .dining-item .array-buttons .array-prev:hover {
  color: var(--header);
  background-color: var(--white);
}

.hotel-dining-wrapper .hotel-dining-content .dining-item .array-buttons .array-next {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.hotel-dining-wrapper .hotel-dining-content .dining-item .array-buttons .array-next:hover {
  color: var(--header);
}

.hotel-dining-wrapper .hotel-slider {
  margin-right: -270px;
  position: relative;
  z-index: 9999;
}

@media (max-width: 1600px) {
  .hotel-dining-wrapper .hotel-slider {
    margin-right: -30px;
  }
}

@media (max-width: 1399px) {
  .hotel-dining-wrapper .hotel-slider {
    margin-right: 0;
  }
}

.hotel-dining-wrapper .hotel-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px 0 0 10px;
}

@media (max-width: 1399px) {
  .hotel-dining-wrapper .hotel-image img {
    border-radius: 10px;
  }
}

.hotel-dining-section {
  position: relative;
  z-index: 999;
}

.hotel-dining-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme);
  width: 945px;
  border-radius: 0 10px 10px 0;
  z-index: -1;
}

@media (max-width: 1899px) {
  .hotel-dining-section::before {
    width: 790px;
  }
}

@media (max-width: 1600px) {
  .hotel-dining-section::before {
    width: 710px;
  }
}

@media (max-width: 1399px) {
  .hotel-dining-section::before {
    width: 100%;
  }
}

.room-wrapper .text {
  text-align: center;
  text-transform: uppercase;
  font-size: 200px;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.3s ease;
  transform-origin: center center;
  will-change: transform, opacity;
  display: block;
  margin-bottom: 48px;
}

@media (max-width: 1399px) {
  .room-wrapper .text {
    margin-bottom: 30px;
    font-size: 150px;
  }
}

@media (max-width: 991px) {
  .room-wrapper .text {
    font-size: 100px;
  }
}

@media (max-width: 575px) {
  .room-wrapper .text {
    font-size: 60px;
  }
}

.room-wrapper .room-box-items-3 {
  border-radius: 0 0 8px 8px;
  position: relative;
  z-index: 9;
  width: 100%;
  max-width: 419px;
}

@media (max-width: 1399px) {
  .room-wrapper .room-box-items-3 {
    max-width: initial;
  }
}

.room-wrapper .room-box-items-3 .room-image {
  position: relative;
  overflow: hidden;
}

.room-wrapper .room-box-items-3 .room-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.room-wrapper .room-box-items-3 .room-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.room-wrapper .room-box-items-3 .room-image span {
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  border-radius: 6px;
  background-color: var(--theme);
  position: absolute;
  left: 25px;
  top: 45px;
  padding: 6px 12px;
  z-index: 999;
}

.room-wrapper .room-box-items-3 .content-item {
  background: var(--white);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.room-wrapper .room-box-items-3 .content-item .room-content {
  padding: 25px;
}

.room-wrapper .room-box-items-3 .content-item .room-content h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--theme);
  display: inline-block;
  margin-bottom: 10px;
}

.room-wrapper .room-box-items-3 .content-item .room-content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.room-wrapper .room-box-items-3 .content-item .room-content h4 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.room-wrapper .room-box-items-3 .content-item .room-content .list {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}

@media (max-width: 1399px) {
  .room-wrapper .room-box-items-3 .content-item .room-content .list {
    flex-wrap: wrap;
    gap: 15px;
  }
}

.room-wrapper .room-box-items-3 .content-item .room-content .list li {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1;
  gap: 10px;
  color: #434343;
}

.room-wrapper .room-box-items-3 .content-item .room-content .list li i {
  font-size: 18px;
  line-height: 1;
  color: #434343;
}

.room-wrapper .room-box-items-3 .content-item .room-content .more-btn {
  text-transform: uppercase;
  color: var(--theme);
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  display: inline-block;
  margin-top: 20px;
}

.room-wrapper .room-box-items-3:hover .room-image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.room-wrapper .room-box-items-3:hover .room-image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.room-wrapper .room-box-items-3.style-2 {
  margin-top: 160px;
  margin-left: 20px;
}

@media (max-width: 1399px) {
  .room-wrapper .room-box-items-3.style-2 {
    margin-left: 0;
    margin-top: 30px;
  }
}

.room-wrapper .room-box-items-3.style-3 {
  margin-top: 250px;
}

@media (max-width: 1399px) {
  .room-wrapper .room-box-items-3.style-3 {
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  .room-wrapper .room-box-items-3.style-3 {
    margin-top: 0px;
  }
}

.room-wrapper .room-box-items-3.style-4 {
  margin-top: 160px;
}

@media (max-width: 1399px) {
  .room-wrapper .room-box-items-3.style-4 {
    margin-top: 30px;
  }
}

.room-wrapper .room-box-items-3.style-5 {
  margin-left: 20px;
}

@media (max-width: 1399px) {
  .room-wrapper .room-box-items-3.style-5 {
    margin-left: 0;
  }
}

.rooms-section-3 .container-fluid {
  padding: 0 120px;
}

@media (max-width: 1899px) {
  .rooms-section-3 .container-fluid {
    padding: 0 70px;
  }
}

@media (max-width: 1600px) {
  .rooms-section-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 1399px) {
  .rooms-section-3 .container-fluid {
    padding: 0 30px;
  }
}

@media (max-width: 767px) {
  .rooms-section-3 .container-fluid {
    padding: 0 15px;
  }
}

.hotel-overview-wrapper .hotel-image {
  max-width: 360px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .hotel-overview-wrapper .hotel-image {
    max-width: initial;
  }
}

.hotel-overview-wrapper .hotel-image img {
  border-radius: 6px;
  width: 100%;
  height: 100%;
}

.hotel-overview-wrapper .hotel-image.style-2 {
  margin-top: 250px;
}

@media (max-width: 1399px) {
  .hotel-overview-wrapper .hotel-image.style-2 {
    margin-top: 0;
  }
}

.hotel-overview-wrapper .hotel-overview-content {
  margin-left: 70px;
  margin-top: 70px;
  margin-bottom: 70px;
  padding-bottom: 230px;
}

@media (max-width: 1399px) {
  .hotel-overview-wrapper .hotel-overview-content {
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0;
    margin-left: 0;
  }
}

.hotel-overview-wrapper .hotel-overview-content .text {
  margin-top: 15px;
  max-width: 518px;
  margin-bottom: 30px;
}

.hotel-overview-wrapper .hotel-overview-content .list-item {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  width: 526px;
}

@media (max-width: 1399px) {
  .hotel-overview-wrapper .hotel-overview-content .list-item {
    width: initial;
  }
}

.hotel-overview-wrapper .hotel-overview-content .list-item li {
  color: #434343;
  position: relative;
  padding: 8px 0;
  padding-left: 20px;
}

.hotel-overview-wrapper .hotel-overview-content .list-item li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.hotel-overview-wrapper .hotel-overview-content .list-item li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 20px;
  background-color: #434343;
  left: 4px;
  top: 20px;
}

.hotel-overview-section {
  position: relative;
}

.hotel-overview-section .left-image {
  position: absolute;
  left: 50px;
  top: 170px;
  overflow: hidden;
}

@media (max-width: 1600px) {
  .hotel-overview-section .left-image {
    display: none;
  }
}

.hotel-overview-section .left-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.hotel-overview-section .bottom-image {
  position: absolute;
  left: 520px;
  bottom: 106px;
  overflow: hidden;
}

@media (max-width: 1399px) {
  .hotel-overview-section .bottom-image {
    display: none;
  }
}

.hotel-overview-section .bottom-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.hotel-overview-section .right-image {
  position: absolute;
  right: 30px;
  bottom: 370px;
  overflow: hidden;
}

@media (max-width: 1600px) {
  .hotel-overview-section .right-image {
    display: none;
  }
}

.hotel-overview-section .right-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.room-details-wrapper .room-details-post .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.room-details-wrapper .room-details-post .details-content {
  margin-top: 30px;
}

.room-details-wrapper .room-details-post .details-content .details-items {
  margin-bottom: 30px;
}

.room-details-wrapper .room-details-post .details-content .details-items .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.room-details-wrapper .room-details-post .details-content .list {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

.room-details-wrapper .room-details-post .details-content .list .room-list li i {
  color: var(--theme);
  margin-right: 10px;
}

.room-details-wrapper .room-details-post .details-content .list .room-list li:not(:last-child) {
  margin-bottom: 10px;
}

.room-details-wrapper .room-details-post .details-content .room-list-2 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.room-details-wrapper .room-details-post .details-content .room-list-2 li i {
  color: var(--theme);
  margin-right: 10px;
}

.room-details-wrapper .room-details-post .details-content .room-list-2 li:not(:last-child) {
  margin-bottom: 10px;
}

.room-details-wrapper .room-details-post .details-content .contact-form-box {
  margin-top: 30px;
}

.room-details-wrapper .room-details-post .details-content .contact-form-box h4 {
  margin-bottom: 10px;
}

.room-details-wrapper .room-details-post .details-content .contact-form-box .form-clt input,
.room-details-wrapper .room-details-post .details-content .contact-form-box .form-clt textarea {
  border-radius: 4px;
  border: none;
  background: var(--white);
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}

.room-details-wrapper .room-details-post .details-content .contact-form-box .form-clt textarea {
  padding-bottom: 110px;
}

.room-details-wrapper .room-sideber {
  background-color: var(--bg-3);
  padding: 30px;
  border-radius: 16px;
}

.room-details-wrapper .room-sideber h4 {
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.room-details-wrapper .room-sideber .side-reservation-from {
  margin-bottom: 20px;
}

.room-details-wrapper .room-sideber .side-reservation-from .form-clt span {
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  font-family: "Gilda Display", serif;
  color: var(--header);
  margin-bottom: 10px;
}

.room-details-wrapper .room-sideber .side-reservation-from .form-clt input {
  border: none;
  outline: none;
  height: 50px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--white);
  padding: 0 12px;
  margin: 0;
  color: var(--text);
}

.room-details-wrapper .room-sideber .side-reservation-from .form-clt input::placeholder {
  color: var(--text);
}

.room-details-wrapper .room-sideber .side-reservation-from .form-clt .form .single-select {
  border: none;
  outline: none;
  height: 50px;
  width: 100%;
  border-radius: 10px;
  background-color: var(--white);
  padding: 6px 12px 0px;
  margin: 0;
  color: var(--text);
}

.room-details-wrapper .room-sideber .side-reservation-from .form-clt .form .single-select span {
  margin-bottom: 0;
}

.room-details-wrapper .room-sideber .side-reservation-from .form-clt .form .single-select .list {
  width: 100%;
}

.room-details-wrapper .room-sideber .side-reservation-from .form-clt .form .single-select::after {
  width: 8px;
  height: 8px;
  top: 45%;
  border-bottom: 2px solid var(--text);
  border-right: 2px solid var(--text);
}

.room-details-wrapper .room-sideber .side-reservation-from .form-check input {
  box-shadow: none;
  cursor: pointer;
}

.room-details-wrapper .room-sideber .side-reservation-from .form-check input:checked {
  background-color: var(--theme);
  border-color: var(--theme);
}

.hotel-facilities-items {
  border-radius: 16px;
  background-color: var(--bg-3);
  display: flex;
  align-items: center;
}

@media (max-width: 1399px) {
  .hotel-facilities-items {
    flex-wrap: wrap;
  }
}

@media (max-width: 991px) {
  .hotel-facilities-items {
    flex-wrap: initial;
  }
}

@media (max-width: 767px) {
  .hotel-facilities-items {
    flex-wrap: wrap;
  }
}

.hotel-facilities-items .facilities-image {
  overflow: hidden;
  position: relative;
}

.hotel-facilities-items .facilities-image img {
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media (max-width: 1399px) {
  .hotel-facilities-items .facilities-image img {
    border-radius: 16px;
  }
}

@media (max-width: 991px) {
  .hotel-facilities-items .facilities-image img {
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
  }
}

@media (max-width: 767px) {
  .hotel-facilities-items .facilities-image img {
    border-radius: 16px;
  }
}

.hotel-facilities-items .facilities-image img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.hotel-facilities-items .facilities-content {
  margin-top: 30px;
  padding: 0 30px 30px;
}

.hotel-facilities-items .facilities-content .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid var(--border);
  color: var(--theme);
  margin-bottom: 20px;
  border-radius: 100px;
  font-size: 30px;
}

.hotel-facilities-items .facilities-content h3 {
  margin-bottom: 10px;
}

.hotel-facilities-items:hover .facilities-image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.hotel-facilities-items:hover .facilities-image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.hotel-facilities-items:hover .facilities-content .icon i {
  animation: jello 1s;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title .sub-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme);
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  position: relative;
}

.section-title .sub-title.sub-title-2 {
  padding-bottom: 10px;
}

.section-title .sub-title.sub-title-2::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 20px;
  height: 1px;
  background-color: var(--theme);
}

.section-title .sub-title.sub-title-2::after {
  position: absolute;
  bottom: 0;
  left: 25px;
  content: "";
  width: 65px;
  height: 1px;
  background-color: var(--theme);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}

.section-title-area .section-title {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}

.section-title-area p {
  max-width: 523px;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg-2);
}

.section-bg-1 {
  background-color: var(--bg);
}

.section-bg-2 {
  background-color: #F7F7F7;
}

.header-bg {
  background-color: var(--header);
}

.theme-bg {
  background-color: var(--theme);
}

.news-bg {
  background: #F8F8F8;
}

.hero-bg {
  background-color: #F7F3EE;
}

.section-padding {
  padding: 120px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.service-wrapper {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1399px) {
  .service-wrapper {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}

.service-wrapper .service-main-item {
  position: relative;
  width: 210px;
  height: 528px;
  border-radius: 10px;
  transition: all 0.6s ease;  
}

@media (max-width: 1399px) {
  .service-wrapper .service-main-item.active {
    display: none;
  }
}

.service-wrapper .service-main-item .service-item,
.service-wrapper .service-main-item .service-card-item {
  position: absolute;
  top: 0;
  left: 0;
  height: 528px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.6s ease;
}

.service-wrapper .service-main-item .service-item {
  background-color: var(--header);
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  width: 210px;
}

.service-wrapper .service-main-item .service-item .service-image img {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: auto;
  display: block;
}

.service-wrapper .service-main-item .service-item .service-content {
  margin-left: 30px;
  margin-bottom: 30px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 18px;
}

.service-wrapper .service-main-item .service-item .service-content h3 {
  height: 340px;
}

.service-wrapper .service-main-item .service-item .service-content h3 a {
  color: var(--white);
}

.service-wrapper .service-main-item .service-item .service-content h3 a:hover {
  color: var(--theme);
}

.service-wrapper .service-main-item .service-item .service-content .btn {
  text-transform: uppercase;
  color: var(--theme);
  font-weight: 600;
}

.service-wrapper .service-main-item .service-card-item {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transform: scale(0.95);
  width: 210px;
}

.service-wrapper .service-main-item .service-card-item .services-image {
  position: relative;
}

.service-wrapper .service-main-item .service-card-item .services-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.service-wrapper .service-main-item .service-card-item .services-image .content {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 20px;
  border-radius: 10px;
  background-color: var(--white);
}

.service-wrapper .service-main-item .service-card-item .services-image .content h3 {
  height: initial;
}

.service-wrapper .service-main-item .service-card-item .services-image .content h3 a {
  display: inline-block;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  transition: background-size 0.3s ease;
}

.service-wrapper .service-main-item .service-card-item .services-image .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.service-wrapper .service-main-item .service-card-item .services-image .content .views-btn {
  color: var(--theme);
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin-top: 10px;
}

.service-wrapper .service-main-item.active {
  width: 450px;
  transition: all 0.6s ease;
}

.service-wrapper .service-main-item.active .service-item {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
}

.service-wrapper .service-main-item.active .service-card-item {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  width: 450px;
  z-index: 3;
}

.service-box-items {
  width: 100%;
  background-color: #F8F8F8;
  border-radius: 4px;
  min-height: 166px;
  text-align: center;
  padding: 40px 15px;
  position: relative;
  z-index: 9;
}

.service-box-items::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: solid 1px var(--theme);
  border-left: solid 1px var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 4px;
}

.service-box-items::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: solid 1px var(--theme);
  border-right: solid 1px var(--theme);
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  border-radius: 4px;
}

.service-box-items .icon {
  margin-bottom: 10px;
}

.service-box-items h6 {
  font-size: 18px;
  font-weight: 400;
}

.service-box-items:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.service-box-items:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}

.service-box-items:hover .icon img {
  animation: jello 1s;
}

.service-details-wrapper .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.service-details-wrapper .details-content {
  margin-top: 30px;
}

.service-details-wrapper .details-content h2 {
  margin-bottom: 15px;
}

.service-details-wrapper .details-content .box {
  font-size: 20px;
  font-weight: 600;
  color: var(--header);
  font-family: "Gilda Display", serif;
  border-radius: 8px;
  border-left: 5px solid var(--theme);
  background: #F7F3EE;
  display: inline-block;
  padding: 24px 32px;
  font-style: italic;
  margin-top: 30px;
  line-height: 164%;
}

@media (max-width: 1399px) {
  .service-details-wrapper .details-content .box {
    font-size: 16px;
  }
}

.service-details-wrapper .details-content .details-list-item {
  margin-top: 30px;
  margin-bottom: 40px;
}

.service-details-wrapper .details-content .details-list-item h3 {
  margin-bottom: 20px;
}

.service-details-wrapper .details-content .details-list-item ul li {
  text-transform: capitalize;
}

.service-details-wrapper .details-content .details-list-item ul li span {
  font-weight: 500;
  color: var(--header);
  display: block;
}

.service-details-wrapper .details-content .details-list-item ul li span i {
  color: var(--theme);
  margin-right: 10px;
}

.service-details-wrapper .details-content .details-list-item ul li:not(:last-child) {
  margin-bottom: 10px;
}

.service-details-wrapper .details-content .details-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.service-details-wrapper .details-content .faq-content {
  margin-top: 40px;
}

.service-details-wrapper .details-content .faq-content h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .details-content .faq-content h3 {
    font-size: 25px;
  }
}

.service-details-wrapper .details-content .faq-content .faq-items {
  position: relative;
  z-index: 9;
}

.service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-item {
  border: none;
}

.service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-item h5 button {
  line-height: 1;
  font-size: 24px;
  font-weight: 400;
  padding: 20px 25px;
  color: var(--header);
  cursor: pointer;
}

@media (max-width: 575px) {
  .service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-item h5 button {
    font-size: 18px;
    line-height: 1.6;
    padding: 22px 20px;
  }
}

.service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-item .accordion-body {
  padding: 0 25px 20px;
  background-color: #F4F4F4;
}

.service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-item .accordion-body p {
  font-size: 15px;
  line-height: 24px;
  font-weight: 400;
}

@media (max-width: 575px) {
  .service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-item .accordion-body p {
    width: 100%;
    font-size: 14px;
    line-height: 28px;
  }
}

.service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-button {
  background-color: #F4F4F4;
  color: var(--header);
}

.service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-button:focus {
  box-shadow: none !important;
  outline: none !important;
  border-color: transparent !important;
}

.service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-button::after {
  content: "\f078";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out !important;
  color: var(--header);
}

.service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-button:not(.collapsed) {
  background-color: #F4F4F4;
  color: var(--theme);
  box-shadow: initial;
}

.service-details-wrapper .details-content .faq-content .faq-items .accordion .accordion-button:not(.collapsed)::after {
  content: "\f077";
  font-family: "Font Awesome 6 Pro";
  background: transparent;
  font-weight: 600;
  color: var(--theme);
  transform: rotate(0);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget {
  margin-bottom: 40px;
  background-color: #F8F8F8;
  padding: 30px;
  border-radius: 16px;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .widget-title {
  border-bottom: 1.5px solid rgba(129, 129, 129, 0.24);
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .widget-title h3 {
  font-weight: 800;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 18px 22px;
  line-height: 1;
  border-radius: 8px;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .category-list li a {
  color: var(--header);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .category-list li i {
  transition: all 0.4s ease-in-out;
  color: var(--header);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .category-list li:not(:last-child) {
  margin-bottom: 20px;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .category-list li span b {
  font-weight: 400;
  color: var(--theme);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .category-list li:hover {
  background-color: var(--theme);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .category-list li:hover a {
  color: var(--white);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .category-list li:hover i,
.service-details-wrapper .service-main-sideber .single-sideber-widget .category-list li:hover span {
  color: var(--white);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .hours-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .hours-list li:not(:last-child) {
  margin-bottom: 18px;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .hours-list li span {
  font-weight: 500;
  color: var(--header);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .hours-list li b {
  font-weight: 500;
  color: var(--theme);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .booking-item form .form-clt input {
  width: 100%;
  background-color: var(--white);
  border-radius: 4px;
  border: none;
  outline: none;
  padding: 18px 22px;
  line-height: 1;
  color: var(--text);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .booking-item form .form-clt .single-select {
  border: none;
  line-height: 1;
  padding: 18px 22px;
  background-color: var(--white);
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .booking-item form .form-clt .single-select::after {
  right: 22px;
  width: 8px;
  height: 8px;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .booking-item form .form-clt .single-select .list {
  width: 100%;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .booking-item form .form-clt .nice-select {
  height: initial;
}

.service-details-wrapper .service-main-sideber .single-sideber-widget .booking-item form .theme-btn {
  justify-content: center;
}

.service-details-wrapper .service-main-sideber .service-details-contact-bg {
  border-radius: 16px;
  padding: 40px;
  position: relative;
  z-index: 9;
}

.service-details-wrapper .service-main-sideber .service-details-contact-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  z-index: -1;
}

.service-details-wrapper .service-main-sideber .service-details-contact-bg h3 {
  text-align: center;
  color: var(--white);
}

.service-details-wrapper .service-main-sideber .service-details-contact-bg .icon {
  text-align: center;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--theme);
  font-size: 25px;
  margin: 30px auto 20px;
}

.service-details-wrapper .service-main-sideber .service-details-contact-bg p {
  color: var(--white);
  opacity: 0.88;
  margin-bottom: 5px;
}

.service-details-wrapper .service-main-sideber .service-details-contact-bg h3 a {
  color: var(--white);
}

.special-offer-wrapper {
  margin-left: -50%;
  margin-right: -50%;
}

@media (max-width: 1600px) {
  .special-offer-wrapper {
    margin-left: -45%;
    margin-right: -45%;
  }
}

@media (max-width: 1399px) {
  .special-offer-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

.special-offer-wrapper .special-offer-box-items {
  border-radius: 12px;
  background: #F8F8F8;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

@media (max-width: 1399px) {
  .special-offer-wrapper .special-offer-box-items {
    display: block;
  }
}

.special-offer-wrapper .special-offer-box-items .thumb {
  max-width: 348px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1399px) {
  .special-offer-wrapper .special-offer-box-items .thumb {
    max-width: 800px;
    margin-bottom: 25px;
  }
}

.special-offer-wrapper .special-offer-box-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  position: relative;
  display: block;
  object-fit: cover;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.special-offer-wrapper .special-offer-box-items .thumb img:first-child {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
  transform: translate(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.special-offer-wrapper .special-offer-box-items .content span {
  font-size: 16px;
  color: var(--theme);
  display: inline-block;
  margin-bottom: 12px;
  font-family: "Gilda Display", serif;
}

.special-offer-wrapper .special-offer-box-items .content p {
  max-width: 435px;
  margin-top: 10px;
}

.special-offer-wrapper .special-offer-box-items .content .list-area {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
}

@media (max-width: 1399px) {
  .special-offer-wrapper .special-offer-box-items .content .list-area {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.special-offer-wrapper .special-offer-box-items .content .list-area .list li {
  font-family: "Gilda Display", serif;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 8px;
}

.special-offer-wrapper .special-offer-box-items .content .list-area .list li:not(:last-child) {
  margin-bottom: 15px;
}

.special-offer-wrapper .special-offer-box-items .content .list-area .list li i {
  font-size: 18px;
  color: var(--theme);
  line-height: 1;
}

.special-offer-wrapper .special-offer-box-items .content .price-list {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 25px;
}

.special-offer-wrapper .special-offer-box-items .content .price-list del {
  font-size: 20px;
  font-weight: 400;
  color: var(--theme);
  font-family: "Gilda Display", serif;
}

.special-offer-wrapper .special-offer-box-items .content .price-list h4 {
  font-size: 32px;
  font-weight: 400;
  color: var(--theme);
}

.special-offer-wrapper .special-offer-box-items:hover .thumb img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
  transform: translate(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
  filter: blur(0);
}

.special-offer-wrapper .special-offer-box-items:hover .thumb img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
  transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.special-offer-wrapper .offer-slider-2 .swiper-slide-active .special-offer-box-items {
  background: var(--theme);
}

.special-offer-wrapper .offer-slider-2 .swiper-slide-active .special-offer-box-items .content span {
  color: var(--white);
}

.special-offer-wrapper .offer-slider-2 .swiper-slide-active .special-offer-box-items .content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  color: var(--white);
}

.special-offer-wrapper .offer-slider-2 .swiper-slide-active .special-offer-box-items .content h3 a:hover {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.special-offer-wrapper .offer-slider-2 .swiper-slide-active .special-offer-box-items .content p {
  color: var(--white);
}

.special-offer-wrapper .offer-slider-2 .swiper-slide-active .special-offer-box-items .content .list-area .list li {
  color: var(--white);
}

.special-offer-wrapper .offer-slider-2 .swiper-slide-active .special-offer-box-items .content .list-area .list li i {
  color: var(--white);
}

.special-offer-wrapper .offer-slider-2 .swiper-slide-active .special-offer-box-items .content .price-list del {
  color: var(--white);
}

.special-offer-wrapper .offer-slider-2 .swiper-slide-active .special-offer-box-items .content .price-list h4 {
  color: var(--white);
}

.team-card-item {
  margin-top: 30px;
}

.team-card-item .team-image {
  position: relative;
}

.team-card-item .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.team-card-item .team-image .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

.team-card-item .team-image .social-icon a {
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  border-radius: 100px;
  color: var(--theme);
  display: inline-block;
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
}

.team-card-item .team-image .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.team-card-item .team-image .team-content {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 0;
  background-color: var(--white);
  padding: 12px 24px;
  text-align: center;
  border-radius: 6px 6px 0 0;
}

.team-card-item .team-image .team-content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--theme);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  border-radius: 6px 6px 0 0;
}

.team-card-item .team-image .team-content h5 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.team-card-item .team-image .team-content h5 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--white) 0%, var(--white) 100%);
}

.team-card-item:hover .team-image .team-content::before {
  top: auto;
  height: 100%;
  z-index: 9;
}

.team-card-item:hover .team-image .team-content h5 {
  position: relative;
  z-index: 999;
}

.team-card-item:hover .team-image .team-content h5 a {
  color: var(--white);
}

.team-card-item:hover .team-image .team-content p {
  position: relative;
  z-index: 999;
  color: var(--white);
}

.team-card-item:hover .team-image .social-icon {
  opacity: 1;
  visibility: visible;
}

.team-card-item:hover .team-image .social-icon a {
  animation: jello 1s;
}

.team-details-wrapper .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.team-details-wrapper .details-content {
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .team-details-wrapper .details-content {
    margin-left: 0;
  }
}

.team-details-wrapper .details-content h2 {
  margin-bottom: 10px;
}

.team-details-wrapper .details-content span {
  font-size: 18px;
  display: inline-block;
  margin-bottom: 20px;
}

.team-details-wrapper .details-content .list {
  margin-top: 30px;
}

.team-details-wrapper .details-content .list li {
  color: var(--header);
}

.team-details-wrapper .details-content .list li:not(:last-child) {
  margin-bottom: 10px;
}

.team-details-wrapper .details-content .list li i {
  color: var(--header);
  margin-right: 5px;
}

.team-details-wrapper .details-content .social-icon {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-details-wrapper .details-content .social-icon a {
  width: 44px;
  height: 44px;
  line-height: 44px;
  display: inline-block;
  text-align: center;
  color: var(--header);
  background-color: #F4F4F4;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}

.team-details-wrapper .details-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.team-experience-wrapper .team-experience-content .progress-area {
  margin-top: 40px;
  max-width: 550px;
}

.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items {
  width: 100%;
}

.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 25px;
}

.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}

.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .progress {
  border-radius: 6px;
  background: rgba(170, 132, 83, 0.5);
  justify-content: flex-start;
  border-radius: 6px;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
}

.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 10px;
  width: 0;
}

.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}

.team-experience-wrapper .team-experience-content .progress-area .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}

@keyframes load {
  0% {
    width: 0;
  }

  100% {
    width: 90%;
  }
}

@keyframes load2 {
  0% {
    width: 0;
  }

  100% {
    width: 70%;
  }
}

@keyframes load3 {
  0% {
    width: 0;
  }

  100% {
    width: 55%;
  }
}

.team-experience-wrapper .contact-form-items h3 {
  font-size: 36px;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .team-experience-wrapper .contact-form-items h3 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .team-experience-wrapper .contact-form-items h3 {
    font-size: 25px;
  }
}

.team-experience-wrapper .contact-form-items .form-clt input,
.team-experience-wrapper .contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--white);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: var(--text);
  font-size: 16px;
  border-radius: 4px;
}

.team-experience-wrapper .contact-form-items .form-clt input::placeholder,
.team-experience-wrapper .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}

.team-experience-wrapper .contact-form-items .form-clt textarea {
  padding-bottom: 30px;
  resize: none;
}

.testimonial-wrapper {
  margin-bottom: 210px;
  margin-top: 300px;
}

.testimonial-wrapper.style-inner {
  margin-bottom: 0;
  margin-top: 0;
}

@media (max-width: 1399px) {
  .testimonial-wrapper {
    margin-bottom: 0;
  }
}

.testimonial-wrapper .testimonial-card-item {
  background-color: var(--white);
  padding: 40px;
  border-radius: 12px;
  position: relative;
  width: 644px;
  z-index: 9;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-card-item {
    width: initial;
  }
}

.testimonial-wrapper .testimonial-card-item::after {
  position: absolute;
  content: "";
  left: 45px;
  height: 100%;
  width: 85%;
  bottom: -30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  z-index: -1;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-card-item::after {
    display: none;
  }
}

.testimonial-wrapper .testimonial-card-item::before {
  position: absolute;
  content: "";
  left: 25px;
  height: 100%;
  width: 92%;
  bottom: -14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.2);
  z-index: -1;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-card-item::before {
    display: none;
  }
}

.testimonial-wrapper .testimonial-card-item .content .star {
  color: #F4BB00;
}

.testimonial-wrapper .testimonial-card-item .content p {
  color: var(--header);
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-card-item .content p {
    font-size: 16px;
  }
}

.testimonial-wrapper .testimonial-card-item .content .client-info-item {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-card-item .content .client-info-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}

.testimonial-wrapper .testimonial-card-item .content .client-info-item .info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-wrapper .testimonial-content {
  margin-left: 50px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content {
    margin-left: 0;
  }
}

.testimonial-wrapper .testimonial-content .client-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-content .client-item {
    margin-top: 30px;
  }
}

.testimonial-wrapper .testimonial-content .client-item h6 {
  color: var(--white);
  font-weight: 500;
  font-family: "Barlow", sans-serif;
  line-height: 137%;
}

.testimonial-wrapper .testimonial-content .client-item h6 span {
  color: var(--theme);
}

.testimonial-wrapper .testimonial-content .client-item h6 b {
  color: var(--theme);
  font-weight: 500;
}

.testimonial-section {
  position: relative;
  z-index: 9;
  margin-top: -300px;
}

.testimonial-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(28, 28, 28, 0.9);
  z-index: -1;
}

.testimonial-section.style-inn {
  margin-top: 0;
}

.testimonial-section.style-inner {
  margin-top: 120px;
  margin-bottom: 120px;
}

.testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item {
  background-color: var(--header);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 30px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item {
    padding: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item .top-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 56px;
  margin-bottom: 30px;
  background-color: var(--theme);
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item .top-items {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }
}

.testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item .top-items .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item .top-items .info-item .cont h5 {
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item .top-items .info-item .cont span {
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item .top-items .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
}

.testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item p {
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  line-height: 136%;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item p {
    font-size: 16px;
  }
}

.testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item .star {
  color: #F4BB00;
  text-align: right;
  margin-top: 40px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-top-item .testimonial-card-item .star {
    margin-top: 30px;
    text-align-last: left;
  }
}

.testimonial-wrapper-2 .testimonial-content-2 {
  margin-left: 60px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-content-2 {
    margin-left: 0;
  }
}

.testimonial-wrapper-2 .testimonial-content-2 .text {
  max-width: 600px;
  margin-top: 20px;
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb {
  position: relative;
  margin-top: 40px;
  max-width: 405px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb {
    margin-top: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb .thumb-box {
  background-color: var(--white);
  box-shadow: 0 12px 24px 0 rgba(170, 132, 83, 0.15);
  border-radius: 10px;
  padding: 50px 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 280px;
  width: 100%;
  text-align: center;
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb .thumb-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb .thumb-box .star {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb .thumb-box .star i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb .thumb-box h5 {
  font-size: 16px;
  font-weight: 300;
  margin-top: 10px;
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb .thumb-box h5 span {
  font-weight: 700;
  font-family: "Barlow", sans-serif;
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb .thumb-box h6 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-wrapper-2 .testimonial-content-2 .testimonial-thumb .thumb-box h6 i {
  margin-right: 4px;
  color: var(--theme);
  font-size: 22px;
}

.testimonial-section-3 {
  margin: 0 40px;
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-section-3 {
    margin: 0 30px;
    overflow: hidden;
  }
}

@media (max-width: 575px) {
  .testimonial-section-3 {
    margin: 0 15px;
  }
}

.testimonial-section-3 .bg-image {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 20px;
}

@media (max-width: 1600px) {
  .testimonial-section-3 .bg-image {
    left: 0;
    right: 0;
  }
}

.testimonial-section-3 .bg-image img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.testimonial-section-3 .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 20px;
  background: rgba(28, 28, 28, 0.7);
  overflow: hidden;
  z-index: 9;
}

.testimonial-wrapper-3 {
  position: relative;
  margin-top: 48px;
  z-index: 999;
  margin-right: -420px;
}

@media (max-width: 1399px) {
  .testimonial-wrapper-3 {
    margin-right: 0;
    margin-top: 30px;
  }
}

.testimonial-wrapper-3 .test-box {
  background-color: var(--white);
  box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
  border-radius: 6px;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  z-index: 999;
}

.testimonial-wrapper-3 .test-box h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}

.testimonial-wrapper-3 .test-box .star {
  display: flex;
  align-items: center;
  gap: 3px;
  justify-content: center;
}

.testimonial-wrapper-3 .test-box .star i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 13px;
}

.testimonial-wrapper-3 .test-box h5 {
  font-size: 16px;
  font-weight: 300;
  margin-top: 10px;
}

.testimonial-wrapper-3 .test-box h5 span {
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  text-decoration: underline;
}

.testimonial-wrapper-3 .test-box h6 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-wrapper-3 .test-box h6 i {
  margin-right: 4px;
  color: var(--theme);
  font-size: 22px;
}

.testimonial-wrapper-3 .testimonial-box {
  background-color: var(--white);
  box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
  border-radius: 6px;
  padding: 30px 20px;
  position: relative;
  z-index: 999;
}

.testimonial-wrapper-3 .testimonial-box .icon {
  margin-bottom: 20px;
}

.testimonial-wrapper-3 .testimonial-box h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-wrapper-3 .testimonial-box .star {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 10px;
}

.testimonial-wrapper-3 .testimonial-box .star i {
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  font-size: 13px;
}

.testimonial-wrapper-3 .testimonial-box .star span {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  margin-left: 4px;
}

.testimonial-wrapper-3 .testimonial-box p {
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 10px;
  max-width: 225px;
}

.testimonial-wrapper-3 .testimonial-box p::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: #D9D9D9;
  width: 60px;
  height: 1px;
}

.testimonial-wrapper-3 .testimonial-box h6 {
  font-size: 14px;
  font-weight: 700;
}.header-logo img,
.header-logo-2 img,
.offcanvas__logo img,
.footer-logo img {
  max-width: 180px;
  height: auto;
  object-fit: contain;
}.sticky.header-1 .main-menu ul li .submenu li a:hover {
  color: #e67817 !important;
}.hero-slider-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.hero-slider-bg .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slider-bg .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}.hero-bg-pagination {
  position: absolute;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-bg-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.hero-bg-pagination .swiper-pagination-bullet-active {
  background: var(--theme);
  width: 30px;
  border-radius: 5px;
}.dining-slider .dining-image {
  width: 100%;
  height: 120px;
  overflow: hidden;
  border-radius: 8px;
}

.dining-slider .dining-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}.hotel-slider .hotel-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
}

.hotel-slider .hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}@media (max-width: 1399px) {
  .hotel-slider .hotel-image {
    height: 500px;
  }
}

@media (max-width: 1199px) {
  .hotel-slider .hotel-image {
    height: 450px;
  }

  .dining-slider .dining-image {
    height: 100px;
  }
}

@media (max-width: 991px) {
  .hotel-slider .hotel-image {
    height: 400px;
  }

  .dining-slider .dining-image {
    height: 90px;
  }
}

@media (max-width: 767px) {
  .hotel-slider .hotel-image {
    height: 350px;
  }

  .dining-slider .dining-image {
    height: 80px;
  }
}

@media (max-width: 575px) {
  .hotel-slider .hotel-image {
    height: 300px;
  }

  .dining-slider .dining-image {
    height: 70px;
  }
}.hero-slider .hero-image {
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 8px;
}

.hero-slider .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}@media (max-width: 1199px) {
  .hero-slider .hero-image {
    height: 120px;
  }
}

@media (max-width: 991px) {
  .hero-slider .hero-image {
    height: 100px;
  }
}

@media (max-width: 767px) {
  .hero-slider .hero-image {
    height: 90px;
  }
}

@media (max-width: 575px) {
  .hero-slider .hero-image {
    height: 80px;
  }
}.instagram-banner-slider .banner-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.instagram-banner-slider .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}@media (max-width: 1199px) {
  .instagram-banner-slider .banner-image {
    height: 300px;
  }
}

@media (max-width: 991px) {
  .instagram-banner-slider .banner-image {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .instagram-banner-slider .banner-image {
    height: 220px;
  }
}

@media (max-width: 575px) {
  .instagram-banner-slider .banner-image {
    height: 200px;
  }
}html body .about-section .about-image img,
html body .about-image img {
  width: 100% !important;
  height: 520px !important;
  object-fit: cover !important;
  border-radius: 20px;
  display: block !important;
}

@media (max-width: 1399px) {
  html body .about-image img {
    height: 480px !important;
  }
}

@media (max-width: 1199px) {
  html body .about-image img {
    height: 420px !important;
  }
}

@media (max-width: 991px) {
  html body .about-image img {
    height: 350px !important;
  }
}

@media (max-width: 767px) {

  html body .about-section .about-image img,
  html body .about-image img {
    height: 320px !important;
    border-radius: 20px !important;
  }
}

@media (max-width: 575px) {

  html body .about-section .about-image img,
  html body .about-image img {
    height: 300px !important;
    border-radius: 20px !important;
  }
}.footer-widget-wrapper {
  position: relative;
  z-index: 1;
}

.footer-mascot-wrapper {
  position: absolute;
  right: -60px;
  
  bottom: 0;
  z-index: 99;
  width: 280px;
  pointer-events: none;
}

.footer-mascot {
  width: 100%;
  animation: mascotFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
}

@keyframes mascotFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(2deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(-10px) rotate(-1deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 1199px) {
  .footer-mascot-wrapper {
    position: relative;
    right: auto;
    bottom: auto;
    width: 150px;
    margin: 20px auto;
    text-align: center;
  }
}.index-theme-override .index-transparent-header:not(.sticky) {
  background-color: transparent !important;
  backdrop-filter: none !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 100 !important;
}.index-theme-override .index-transparent-header:not(.sticky) .header-main {
  padding: 6px 0 !important;
}.index-theme-override .index-transparent-header:not(.sticky) .header-logo img {
  height: 95px !important;
  width: auto !important;
  transition: all 0.3s ease-in-out;
}

.index-theme-override .index-transparent-header:not(.sticky) .main-menu>nav>ul>li>a {
  color: #ffffff !important;
}

.index-theme-override .index-transparent-header:not(.sticky) .main-menu>nav>ul>li>a:hover,
.index-theme-override .index-transparent-header:not(.sticky) .main-menu>nav>ul>li.active>a {
  color: #e67817 !important;
}body.index-theme-override {
  background: #050505 !important;
}

.index-theme-override section,
.index-theme-override .section-bg,
.index-theme-override .about-wrapper,
.index-theme-override .feature-section,
.index-theme-override .offer-section,
.index-theme-override .service-section,
.index-theme-override .room-section,
.index-theme-override .news-section {
  background-color: #050505 !important;
}

.index-theme-override a:hover {
  color: #e67817 !important;
}.index-theme-override .surat-transparent-header:not(.sticky) {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background-color: transparent !important;
  backdrop-filter: none !important;
  z-index: 100 !important;
}

.index-theme-override .surat-transparent-header:not(.sticky) .header-logo {
  display: block !important;
}

.index-theme-override .surat-transparent-header:not(.sticky) .header-logo-2 {
  display: none !important;
}

.index-theme-override .surat-transparent-header:not(.sticky) .main-menu>nav>ul>li>a {
  color: #ffffff !important;
}

.index-theme-override .surat-transparent-header:not(.sticky) .main-menu>nav>ul>li>a:hover,
.index-theme-override .surat-transparent-header:not(.sticky) .main-menu>nav>ul>li.active>a {
  color: #e67817 !important;
}.reveal-up {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}.index-theme-override .luxury-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.index-theme-override .text-accent-gold {
  color: #e67817 !important;
}

.index-theme-override .bg-accent-gold {
  background-color: #e67817 !important;
}

.index-theme-override .luxury-btn {
  background: linear-gradient(135deg, #e67817 0%, #ffb067 100%) !important;
  color: white !important;
  border: none !important;
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
  display: inline-flex;
  align-items: center;
}

.index-theme-override .luxury-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 20px rgba(230, 120, 23, 0.3) !important;
}

.index-theme-override .luxury-btn-outline {
  background: rgba(255, 255, 255, 0.05) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 14px 28px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  transition: all 0.3s ease !important;
  font-size: 14px !important;
  display: inline-flex;
  align-items: center;
}

.index-theme-override .luxury-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  transform: translateY(-3px) !important;
}

.index-theme-override .glass-panel {
  background: rgba(15, 15, 15, 0.6) !important;
  backdrop-filter: blur(20px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.index-theme-override .hero-headline {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.index-theme-override .bg-accent-gold\/10 {
  background-color: rgba(230, 120, 23, 0.1) !important;
}

.index-theme-override .blur-\[60px\] {
  filter: blur(60px) !important;
}.index-theme-override .main-footer .footer-links h3 {
  color: #ffffff !important;
  font-family: 'Onest', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
}

.index-theme-override .main-footer .footer-links ul li a,
.index-theme-override .main-footer .text p,
.index-theme-override .main-footer .luxury-hub-info .label {
  color: rgba(255, 255, 255, 0.7) !important;
  font-family: 'Onest', sans-serif !important;
  transition: color 0.3s ease !important;
}

.index-theme-override .main-footer .footer-links ul li a:hover {
  color: #e67817 !important;
  padding-left: 5px;
}

.index-theme-override .main-footer .luxury-hub-info .value {
  color: #ffffff !important;
  font-family: 'Onest', sans-serif !important;
}.index-theme-override .main-footer .luxury-hub-item i {
  color: #e67817 !important;
  font-size: 18px !important;
}.index-theme-override .main-footer .footer-social-links ul li a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.35s ease !important;
}

.index-theme-override .main-footer .footer-social-links ul li a i {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 15px !important;
  transition: color 0.3s ease !important;
}

.index-theme-override .main-footer .footer-social-links ul li a:hover {
  background: #e67817 !important;
  border-color: #e67817 !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 20px rgba(230, 120, 23, 0.35) !important;
}

.index-theme-override .main-footer .footer-social-links ul li a:hover i {
  color: #ffffff !important;
}.index-theme-override .main-footer .luxury-hub-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
}

.index-theme-override .main-footer .luxury-hub-item i {
  margin-top: 3px;
  min-width: 20px;
}

.index-theme-override .main-footer .luxury-hub-info .label {
  display: block !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin-bottom: 3px !important;
}

.index-theme-override .main-footer .luxury-hub-info .value {
  font-size: 14px !important;
  font-weight: 500 !important;
}

.index-theme-override {
  --luxury-gold: #e67817;
  --luxury-gold-soft: #ffb067;
  --luxury-ivory: #fff8ef;
  --luxury-panel: rgba(18, 12, 8, 0.78);
  --luxury-panel-border: rgba(230, 120, 23, 0.28);
  --luxury-copy: rgba(247, 241, 228, 0.78);
}.index-theme-override .hero-1 .hero-content {
  position: relative;
  z-index: 2;
}

.index-theme-override .about-section {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(230, 120, 23, 0.08), transparent 22%),
    linear-gradient(180deg, #050505 0%, #080808 100%) !important;
}

.index-theme-override .about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.015), transparent 40%, transparent 60%, rgba(230, 120, 23, 0.03));
  pointer-events: none;
}

.index-theme-override .about-section .about-wrapper {
  position: relative;
  z-index: 1;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(14, 14, 14, 0.92) 0%, rgba(8, 8, 8, 0.96) 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.index-theme-override .about-section .about-image {
  max-width: 100% !important;
}

.index-theme-override .about-section .about-image::before {
  left: 18px !important;
  bottom: -18px !important;
  width: calc(100% - 36px) !important;
  background: rgba(230, 120, 23, 0.16) !important;
  border-radius: 24px !important;
}

.index-theme-override .about-section .about-image::after {
  left: 34px !important;
  bottom: -34px !important;
  width: calc(100% - 68px) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border-radius: 24px !important;
}

.index-theme-override .about-section .about-image img {
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  filter: saturate(1.02) contrast(1.02);
}

.index-theme-override .about-section .about-content {
  padding-left: 34px;
}

.index-theme-override .about-section .section-title .sub-title {
  margin-bottom: 16px;
  color: var(--luxury-gold) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.index-theme-override .about-section .section-title .sec-title {
  color: var(--luxury-ivory) !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 0 !important;
  word-wrap: normal !important;
}

.index-theme-override .about-section .about-content .text {
  max-width: 100% !important;
  margin-top: 24px !important;
  margin-bottom: 28px !important;
  padding-bottom: 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 248, 239, 0.74) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 19px !important;
  font-weight: 500 !important;
  line-height: 1.9 !important;
}

.index-theme-override .about-section .about-content .list-item {
  gap: 28px !important;
  align-items: flex-start !important;
  padding-bottom: 30px !important;
  margin-bottom: 30px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.index-theme-override .about-section .about-content .list-item .list {
  flex: 1;
}

.index-theme-override .about-section .about-content .list-item .list li {
  display: flex;
  align-items: center;
  color: rgba(255, 248, 239, 0.9) !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1.7 !important;
}

.index-theme-override .about-section .about-content .list-item .list li i {
  color: var(--luxury-gold) !important;
  margin-right: 12px !important;
  text-shadow: 0 0 18px rgba(230, 120, 23, 0.18);
}

.index-theme-override .about-section .about-content .hero-button-item {
  padding: 26px 30px !important;
  border: 1px solid rgba(230, 120, 23, 0.16);
  border-radius: 24px !important;
  background:
    linear-gradient(90deg, rgba(38, 22, 10, 0.9) 0%, rgba(18, 15, 12, 0.78) 100%) !important;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}

.index-theme-override .about-section .about-content .hero-button-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(230, 120, 23, 0.18), transparent 34%, transparent 70%, rgba(255, 176, 103, 0.08));
  pointer-events: none;
}

.index-theme-override .about-section .about-content .hero-button-item .theme-btn {
  background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-gold-soft)) !important;
  color: #ffffff !important;
  border-radius: 14px !important;
  font-family: "Manrope", sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  box-shadow: 0 16px 34px rgba(230, 120, 23, 0.22);
}

.index-theme-override .about-section .about-content .hero-button-item .button-text span {
  color: var(--luxury-ivory) !important;
  font-family: "Manrope", sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
}

.index-theme-override .about-section .about-content .hero-button-item .button-text .video-btn {
  background-color: #ffffff !important;
  color: var(--luxury-gold) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.index-theme-override .about-section .about-content .hero-button-item .button-text .video-btn::before {
  border-color: rgba(255, 255, 255, 0.24) !important;
}

@media (max-width: 1199px) {
  .index-theme-override .hero-1 .hero-content .hero-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 34px;
  }

  .index-theme-override .hero-1 .hero-content .hero-wrapper .hero-right-content {
    max-width: 460px;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .index-theme-override .about-section .about-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .index-theme-override .hero-1 {
    padding-top: 140px !important;
    padding-bottom: 50px !important;
  }

  .index-theme-override .hero-1 .hero-content .hero-wrapper .hero-left-content .hero-headline {
    font-size: clamp(3rem, 12vw, 4.6rem) !important;
    line-height: 0.92;
  }

  .hero-luxury-kicker {
    font-size: 11px;
    letter-spacing: 0.14em;
    padding: 9px 14px;
  }

  .hero-luxury-copy {
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  .hero-luxury-actions {
    width: 100%;
    gap: 12px;
  }

  .hero-luxury-points {
    gap: 8px;
  }

  .hero-luxury-points span {
    font-size: 11px;
    padding: 7px 12px;
  }

  .hero-luxury-btn,
  .hero-luxury-link {
    width: 100%;
    padding: 0 20px;
  }

  .index-theme-override .hero-1 .hero-content .hero-wrapper .hero-box {
    padding: 20px;
    border-radius: 22px;
  }

  .index-theme-override .about-section .about-wrapper {
    padding: 20px;
    border-radius: 22px;
  }

  .index-theme-override .about-section .about-image img {
    min-height: 360px;
    border-radius: 18px !important;
  }

  .index-theme-override .about-section .section-title .sec-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    line-height: 1.1 !important;
  }

  .index-theme-override .about-section .about-content .text {
    font-size: 16px !important;
    line-height: 1.8 !important;
  }

  .index-theme-override .about-section .about-content .list-item .list li {
    font-size: 16px !important;
  }

  .index-theme-override .about-section .about-content .hero-button-item {
    padding: 20px !important;
    border-radius: 18px !important;
  }
}:root {
  --lux-bg: #050505;
  --lux-bg2: #0a0a0f;
  --lux-bg3: #121218;
  --lux-gold: #e67817;
  --lux-gold-lite: #ffb067;
  --lux-white: #ffffff;
  --lux-muted: rgba(255, 255, 255, 0.65);
  --lux-border: rgba(230, 120, 23, 0.15);
  --lux-glass: rgba(255, 255, 255, 0.03);
  --lux-glass-border: rgba(255, 255, 255, 0.08);
  --lux-glow: rgba(230, 120, 23, 0.1);
}body.luxury-dark-theme,
body.luxury-dark-theme html {
  background-color: var(--lux-bg) !important;
  color: var(--lux-white) !important;
}body.luxury-dark-theme #smooth-wrapper,
body.luxury-dark-theme #smooth-content {
  background-color: var(--lux-bg) !important;
}

body.luxury-dark-theme,
body.luxury-dark-theme html {
  background-color: var(--lux-bg) !important;
  color: var(--lux-white) !important;
  font-family: 'Barlow', sans-serif !important;
}body.luxury-dark-theme .cinematic-title {
  font-family: 'Outfit', sans-serif !important;
  letter-spacing: -0.02em !important;
}

body.luxury-dark-theme .cinematic-title span.editorial {
  font-style: italic !important;
  font-weight: 300 !important;
  opacity: 0.8;
}body.luxury-dark-theme h1,
body.luxury-dark-theme h2,
body.luxury-dark-theme h3,
body.luxury-dark-theme h4,
body.luxury-dark-theme h5,
body.luxury-dark-theme h6 {
  color: var(--lux-white) !important;
  font-family: 'Outfit', sans-serif !important;
}

body.luxury-dark-theme p,
body.luxury-dark-theme li {
  color: var(--lux-muted) !important;
  font-family: 'Barlow', sans-serif !important;
}

body.luxury-dark-theme span,
body.luxury-dark-theme label {
  font-family: 'Barlow', sans-serif !important;
}body.luxury-dark-theme h1:hover,
body.luxury-dark-theme h2:hover,
body.luxury-dark-theme h3:hover,
body.luxury-dark-theme h4:hover {
  color: var(--lux-gold) !important;
}body.luxury-dark-theme .sub-title {
  color: var(--lux-gold) !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}body.luxury-dark-theme .sec-title {
  color: var(--lux-white) !important;
  font-weight: 700 !important;
}body.luxury-dark-theme #preloader {
  background: var(--lux-bg) !important;
}

body.luxury-dark-theme #preloader p {
  color: var(--lux-muted) !important;
}

body.luxury-dark-theme .preloader-logo {
  display: block !important;
}

body.luxury-dark-theme #preloader .spinner {
  border-top-color: var(--lux-gold) !important;
  border-left-color: var(--lux-gold) !important;
}body.luxury-dark-theme #header-sticky,
body.luxury-dark-theme .aa-header-fix,
body.luxury-dark-theme .index-transparent-header:not(.sticky) {
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  z-index: 9999 !important;
  position: absolute !important;
  top: 0 !important;
  width: 100% !important;
  opacity: 1 !important;
  display: block !important;
}body.luxury-dark-theme #header-sticky.sticky,
body.luxury-dark-theme .aa-header-fix.sticky,
body.luxury-dark-theme .index-transparent-header.sticky {
  background: rgba(255, 255, 255, 0.96) !important;
  background-color: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}body.luxury-dark-theme .header-logo {
  display: block !important;
}

body.luxury-dark-theme .header-logo-2 {
  display: none !important;
}body.luxury-dark-theme .header-logo img {
  display: block !important;
}body.luxury-dark-theme #header-sticky.sticky .header-logo,
body.luxury-dark-theme .aa-header-fix.sticky .header-logo,
body.luxury-dark-theme .index-transparent-header.sticky .header-logo {
  display: none !important;
}

body.luxury-dark-theme #header-sticky.sticky .header-logo-2,
body.luxury-dark-theme .aa-header-fix.sticky .header-logo-2,
body.luxury-dark-theme .index-transparent-header.sticky .header-logo-2 {
  display: block !important;
}body.luxury-dark-theme #header-sticky.sticky .header-logo-2 img,
body.luxury-dark-theme .aa-header-fix.sticky .header-logo-2 img {
  filter: none !important;
  height: 70px !important;
}body.luxury-dark-theme .main-menu>nav>ul>li>a,
body.luxury-dark-theme .index-transparent-header:not(.sticky) .main-menu>nav>ul>li>a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.5px !important;
  transition: color 0.3s ease !important;
}body.luxury-dark-theme .index-transparent-header.sticky .main-menu>nav>ul>li>a,
body.luxury-dark-theme .aa-header-fix.sticky .main-menu>nav>ul>li>a,
body.luxury-dark-theme #header-sticky.sticky .main-menu>nav>ul>li>a {
  color: #1C1C1C !important;
}

body.luxury-dark-theme .main-menu>nav>ul>li>a:hover,
body.luxury-dark-theme .main-menu>nav>ul>li.active>a,
body.luxury-dark-theme .index-transparent-header.sticky .main-menu>nav>ul>li>a:hover,
body.luxury-dark-theme .index-transparent-header.sticky .main-menu>nav>ul>li.active>a {
  color: var(--lux-gold) !important;
}body.luxury-dark-theme .main-menu .submenu {
  background: var(--lux-bg2) !important;
  border: 1px solid var(--lux-border) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8) !important;
}

body.luxury-dark-theme .main-menu .submenu li a {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.luxury-dark-theme .main-menu .submenu li a:hover {
  color: var(--lux-gold) !important;
  background: var(--lux-glow) !important;
}body.luxury-dark-theme .header-button .theme-btn,
body.luxury-dark-theme .aa-header-fix .header-button .theme-btn,
body.luxury-dark-theme .aa-header-fix.sticky .header-button .theme-btn {
  background: var(--lux-gold) !important;
  background-color: var(--lux-gold) !important;
  border-color: var(--lux-gold) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  letter-spacing: 1px !important;
  padding: 14px 30px !important;
  transition: all 0.4s ease !important;
}

body.luxury-dark-theme .header-button .theme-btn:hover,
body.luxury-dark-theme .aa-header-fix .header-button .theme-btn:hover,
body.luxury-dark-theme .aa-header-fix.sticky .header-button .theme-btn:hover {
  background: #fff !important;
  background-color: #fff !important;
  color: var(--lux-gold) !important;
  box-shadow: 0 0 25px rgba(230, 120, 23, 0.5) !important;
}body.luxury-dark-theme .header-right .call-item h6 a {
  color: #fff !important;
}

body.luxury-dark-theme .header-right .call-item .icon i {
  color: var(--lux-gold) !important;
}body.luxury-dark-theme .sidebar__toggle i {
  color: #fff !important;
}body.luxury-dark-theme .aa-header-fix.sticky .sidebar__toggle i,
body.luxury-dark-theme #header-sticky.sticky .sidebar__toggle i {
  color: #1C1C1C !important;
}body.luxury-dark-theme .offcanvas__info,
body.luxury-dark-theme .fix-area {
  background: #07070a !important;
  border-left: 1px solid var(--lux-border) !important;
}

body.luxury-dark-theme .offcanvas__info h4,
body.luxury-dark-theme .offcanvas__info p,
body.luxury-dark-theme .offcanvas__info a,
body.luxury-dark-theme .offcanvas__info span,
body.luxury-dark-theme .offcanvas__info li {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.luxury-dark-theme .offcanvas__contact-icon i {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .offcanvas__close button i {
  color: #fff !important;
}

body.luxury-dark-theme .social-icon a {
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

body.luxury-dark-theme .social-icon a:hover {
  background: var(--lux-gold) !important;
  border-color: var(--lux-gold) !important;
}

body.luxury-dark-theme .offcanvas__overlay {
  background: rgba(0, 0, 0, 0.85) !important;
}body.luxury-dark-theme .hero-section-1 {
  background-color: #000 !important;
  position: relative;
}

body.luxury-dark-theme .hero-headline,
body.luxury-dark-theme .hero-section-1 h1 {
  color: #fff !important;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8) !important;
}body.luxury-dark-theme .hero-box {
  background: rgba(6, 6, 8, 0.75) !important;
  background-image: none !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border: 1px solid var(--lux-border) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7) !important;
}

body.luxury-dark-theme .hero-box h4 {
  color: #fff !important;
}

body.luxury-dark-theme .hero-box .top-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}body.luxury-dark-theme .swiper-dot-1 .dot .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35) !important;
}

body.luxury-dark-theme .swiper-dot-1 .dot .swiper-pagination-bullet-active {
  background: var(--lux-gold) !important;
}body.luxury-dark-theme .about-section,
body.luxury-dark-theme .about-section.section-bg {
  background: linear-gradient(160deg, #080810 0%, #0c0c14 50%, #060608 100%) !important;
  position: relative;
  overflow: hidden;
}

body.luxury-dark-theme .about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

body.luxury-dark-theme .about-wrapper .about-image img {
  border-radius: 16px !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8) !important;
}

body.luxury-dark-theme .about-wrapper .about-image::before,
body.luxury-dark-theme .about-wrapper .about-image::after {
  background: rgba(230, 120, 23, 0.15) !important;
}

body.luxury-dark-theme .about-content .section-title .sub-title {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .about-content .text {
  color: rgba(240, 240, 240, 0.65) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.luxury-dark-theme .about-content .list-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.luxury-dark-theme .about-content .list-item .list li {
  color: rgba(240, 240, 240, 0.85) !important;
  font-size: 16px !important;
}

body.luxury-dark-theme .about-content .list-item .list li i {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .about-content .hero-button-item {
  background: linear-gradient(135deg, #111118 0%, #0a0a10 100%) !important;
  border: 1px solid var(--lux-border) !important;
  border-radius: 16px !important;
}

body.luxury-dark-theme .about-content .hero-button-item .top-shape img {
  filter: brightness(0) invert(1) opacity(0.06) !important;
}

body.luxury-dark-theme .about-content .hero-button-item .button-text span {
  color: rgba(255, 255, 255, 0.7) !important;
}

body.luxury-dark-theme .about-content .hero-button-item .video-btn {
  background: var(--lux-gold) !important;
  color: #fff !important;
  box-shadow: 0 0 20px rgba(230, 120, 23, 0.4) !important;
}body.luxury-dark-theme .our-services-section {
  background: transparent !important;
}

body.luxury-dark-theme .service-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid var(--lux-glass-border) !important;
  border-radius: 30px !important;
  padding: 35px !important;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

body.luxury-dark-theme .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(230, 120, 23, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

body.luxury-dark-theme .service-card:hover {
  transform: translateY(-15px) !important;
  border-color: var(--lux-gold) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px var(--lux-glow) !important;
}

body.luxury-dark-theme .service-card:hover::before {
  opacity: 1;
}

body.luxury-dark-theme .service-card-img {
  border-radius: 20px !important;
  margin-bottom: 25px !important;
  overflow: hidden;
  border: 1px solid var(--lux-glass-border) !important;
}

body.luxury-dark-theme .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--lux-gold) !important;
  color: #fff !important;
  padding: 5px 12px !important;
  border-radius: 10px !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 20px rgba(230, 120, 23, 0.3) !important;
}body.luxury-dark-theme .room-section {
  position: relative;
}

body.luxury-dark-theme .room-box-item {
  background: var(--lux-bg2) !important;
  border: 1px solid var(--lux-glass-border) !important;
  border-radius: 25px !important;
  overflow: hidden;
  transition: all 0.5s ease !important;
}

body.luxury-dark-theme .room-box-item:hover {
  border-color: var(--lux-gold) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5) !important;
}

body.luxury-dark-theme .room-box-item .room-image {
  border-radius: 0 0 25px 25px !important;
}

body.luxury-dark-theme .room-box-item .room-content h4 a {
  border-radius: 20px !important;
  overflow: hidden !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

body.luxury-dark-theme .service-card:hover {
  transform: translateY(-12px) !important;
  border-color: var(--lux-gold) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(230, 120, 23, 0.15) !important;
}

body.luxury-dark-theme .service-card .service-card-img img {
  transition: transform 0.9s ease !important;
}

body.luxury-dark-theme .service-card:hover .service-card-img img {
  transform: scale(1.08) !important;
}

body.luxury-dark-theme .service-card .service-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.85) 100%) !important;
}

body.luxury-dark-theme .service-card .service-card-label h3 {
  color: #fff !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8) !important;
}

body.luxury-dark-theme .service-card .service-card-label p {
  color: rgba(255, 255, 255, 0.65) !important;
}

body.luxury-dark-theme .service-card .service-card-label .service-badge {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .service-card .service-card-label .service-badge::before {
  background-color: var(--lux-gold) !important;
}

body.luxury-dark-theme .service-card:hover .service-card-label h3 {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .service-badge {
  background: var(--lux-gold) !important;
  color: #fff !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
}body.luxury-dark-theme #smooth-wrapper,
body.luxury-dark-theme #smooth-content {
  background-color: var(--lux-bg) !important;
}body.luxury-dark-theme section,
body.luxury-dark-theme .section-padding {
  position: relative;
  background-color: transparent !important;
  
}body.luxury-dark-theme section:not(.hotel-dining-section)::before,
body.luxury-dark-theme .section-padding:not(.hotel-dining-section)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(5, 5, 5, 0.85) 0%, rgba(5, 5, 5, 0.95) 100%);
  z-index: -1;
  pointer-events: none;
}body.luxury-dark-theme .about-wrapper .about-image::before,
body.luxury-dark-theme .about-wrapper .about-image::after {
  display: none !important;
}body.luxury-dark-theme .hotel-dining-section {
  
}

body.luxury-dark-theme .hotel-dining-section::before {
  display: none !important;
}

body.luxury-dark-theme .hotel-dining-section .hotel-dining-wrapper {
  position: relative;
  z-index: 2;
}

body.luxury-dark-theme .hotel-image,
body.luxury-dark-theme .dining-image {
  border-radius: 30px !important;
  overflow: hidden;
  border: 1px solid var(--lux-glass-border) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
  transition: all 0.6s ease !important;
}

body.luxury-dark-theme .hotel-image:hover,
body.luxury-dark-theme .dining-image:hover {
  transform: scale(1.02) !important;
  border-color: var(--lux-gold) !important;
}body.luxury-dark-theme .testimonial-section {
  position: relative;
  
}

body.luxury-dark-theme .testimonial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 16, 0.85);
  
  z-index: 0;
}

body.luxury-dark-theme .testimonial-section .container {
  position: relative;
  z-index: 1;
}

body.luxury-dark-theme .testimonial-section h5 {
  color: #fff !important;
}

body.luxury-dark-theme .testimonial-section span {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .testimonial-section .client-item h6 {
  color: #fff !important;
}

body.luxury-dark-theme .testimonial-section .client-item b {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .testimonial-section .odometer {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .testimonial-section .quate-image img {
  filter: brightness(0) invert(1) opacity(0.5) !important;
}body.luxury-dark-theme .brand-item:hover img {
  filter: brightness(0) invert(1) opacity(1) !important;
}body.luxury-dark-theme .main-footer {
  background: transparent !important;
  background-color: transparent !important;
  border-top: none !important;
}

body.luxury-dark-theme .main-footer h3 {
  color: #fff !important;
}

body.luxury-dark-theme .main-footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.6) !important;
}

body.luxury-dark-theme .main-footer .footer-links ul li a:hover {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .footer-social-links ul li {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

body.luxury-dark-theme .footer-social-links ul li a {
  color: #fff !important;
}

body.luxury-dark-theme .footer-social-links ul li:hover {
  background: var(--lux-gold) !important;
  border-color: var(--lux-gold) !important;
}body.luxury-dark-theme .theme-btn {
  background: var(--lux-gold) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  border: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease !important;
}

body.luxury-dark-theme .theme-btn::before {
  background: #fff !important;
}

body.luxury-dark-theme .theme-btn:hover {
  color: var(--lux-gold) !important;
  box-shadow: 0 8px 30px rgba(230, 120, 23, 0.4) !important;
}body.luxury-dark-theme .back-to-top {
  background: var(--lux-gold) !important;
  background-color: var(--lux-gold) !important;
  box-shadow: 0 4px 20px rgba(230, 120, 23, 0.4) !important;
}

body.luxury-dark-theme .back-to-top:hover {
  background: #fff !important;
  background-color: #fff !important;
}

body.luxury-dark-theme .back-to-top:hover i {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .back-to-top i {
  color: #fff !important;
}body.luxury-dark-theme .section-bg {
  background: var(--lux-bg2) !important;
}body.luxury-dark-theme::-webkit-scrollbar {
  width: 6px;
}

body.luxury-dark-theme::-webkit-scrollbar-track {
  background: var(--lux-bg);
}

body.luxury-dark-theme::-webkit-scrollbar-thumb {
  background: var(--lux-gold);
  border-radius: 3px;
}

body.luxury-dark-theme::-webkit-scrollbar-thumb:hover {
  background: var(--lux-gold-lite);
}body.luxury-dark-theme ::selection {
  background: var(--lux-gold);
  color: #fff;
}body.luxury-dark-theme .section-padding {
  border-color: var(--lux-border) !important;
}

body.luxury-dark-theme hr {
  border-color: rgba(255, 255, 255, 0.08) !important;
}body.luxury-dark-theme .fa-circle-chevron-right,
body.luxury-dark-theme .fa-chevron-right,
body.luxury-dark-theme .fa-chevron-left {
  color: var(--lux-gold) !important;
}@keyframes lux-glow-pulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes lux-float {

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

  50% {
    transform: translateY(-6px);
  }
}body.luxury-dark-theme .about-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  opacity: 0.3;
}

body.luxury-dark-theme .our-services-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  opacity: 0.3;
  z-index: 1;
}

body.luxury-dark-theme .hotel-dining-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lux-gold), transparent);
  opacity: 0.3;
}body.luxury-dark-theme .mean-container .mean-bar {
  background: var(--lux-bg) !important;
}

body.luxury-dark-theme .mean-container .mean-nav {
  background: var(--lux-bg) !important;
}

body.luxury-dark-theme .mean-container .mean-nav ul li a {
  color: rgba(255, 255, 255, 0.8) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
}

body.luxury-dark-theme .mean-container .mean-nav ul li a:hover {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme .mean-container a.meanmenu-reveal {
  color: #fff !important;
}

body.luxury-dark-theme .mean-container a.meanmenu-reveal span {
  background: #fff !important;
}body.luxury-dark-theme .nice-select {
  background: var(--lux-bg2) !important;
  border-color: var(--lux-border) !important;
  color: var(--lux-white) !important;
}

body.luxury-dark-theme .nice-select .list {
  background: var(--lux-bg2) !important;
  border-color: var(--lux-border) !important;
}body.luxury-dark-theme .mouseCursor.cursor-outer {
  border: 2px solid rgba(230, 120, 23, 0.4) !important;
}

body.luxury-dark-theme .mouseCursor.cursor-inner {
  background: var(--lux-gold) !important;
}body.luxury-dark-theme .section-bg {
  background: linear-gradient(180deg, #050505 0%, #0a0a0f 100%) !important;
}

body.luxury-dark-theme .bg-cover {
  background-color: #000 !important;
}body.luxury-dark-theme .theme-btn {
  background: var(--lux-gold) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  transition: all 0.4s ease !important;
}

body.luxury-dark-theme .theme-btn:hover {
  background: #fff !important;
  color: var(--lux-gold) !important;
  box-shadow: 0 0 20px rgba(230, 120, 23, 0.4) !important;
}body.luxury-dark-theme .hero-box {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(10, 10, 16, 0.8) !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(230, 120, 23, 0.05) !important;
}

body.luxury-dark-theme .hero-box h4 {
  font-family: var(--lux-font-heading);
  letter-spacing: 1px;
  font-weight: 600;
}

body.luxury-dark-theme .hero-item .hero-image {
  border-radius: 12px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: all 0.4s ease;
}

body.luxury-dark-theme .hero-item:hover .hero-image {
  border-color: var(--lux-gold) !important;
  box-shadow: 0 0 15px rgba(230, 120, 23, 0.3) !important;
}body.luxury-dark-theme ::-webkit-scrollbar {
  width: 8px;
}

body.luxury-dark-theme ::-webkit-scrollbar-track {
  background: #050505;
}

body.luxury-dark-theme ::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 10px;
}

body.luxury-dark-theme ::-webkit-scrollbar-thumb:hover {
  background: var(--lux-gold);
}body.luxury-dark-theme .nice-select .option:hover,
body.luxury-dark-theme .nice-select .option.focus,
body.luxury-dark-theme .nice-select .option.selected.focus {
  background-color: var(--lux-glow) !important;
  color: var(--lux-gold) !important;
}body.luxury-dark-theme .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.2) !important;
  opacity: 1 !important;
}

body.luxury-dark-theme .swiper-pagination-bullet-active {
  background: var(--lux-gold) !important;
  box-shadow: 0 0 10px var(--lux-glow);
}body.luxury-dark-theme {
  --lux-font-heading: "Cormorant Garamond", serif;
  --lux-font-body: "Onest", sans-serif;
}

body.luxury-dark-theme,
body.luxury-dark-theme p,
body.luxury-dark-theme a,
body.luxury-dark-theme span,
body.luxury-dark-theme li {
  font-family: var(--lux-font-body) !important;
}

body.luxury-dark-theme h1,
body.luxury-dark-theme h2,
body.luxury-dark-theme h3,
body.luxury-dark-theme h4,
body.luxury-dark-theme h5,
body.luxury-dark-theme h6,
body.luxury-dark-theme .sec-title {
  font-family: var(--lux-font-heading) !important;
}

body.luxury-dark-theme .index-transparent-header:not(.sticky) {
  background: linear-gradient(180deg, rgba(4, 4, 8, 0.86), rgba(4, 4, 8, 0.2)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

body.luxury-dark-theme .index-transparent-header:not(.sticky) .header-main,
body.luxury-dark-theme .index-transparent-header.sticky .header-main {
  padding: 12px 0 !important;
}

body.luxury-dark-theme .index-transparent-header:not(.sticky) .header-logo img,
body.luxury-dark-theme .index-transparent-header.sticky .header-logo-2 img {
  height: 84px !important;
  width: auto !important;
}

body.luxury-dark-theme .header-right .call-item {
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.luxury-dark-theme .header-right .call-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #e67817, #ffb56c);
  box-shadow: 0 12px 24px rgba(230, 120, 23, 0.28);
}

body.luxury-dark-theme .header-right .call-item .icon i,
body.luxury-dark-theme .header-right .call-item h6 a {
  color: #fff !important;
}

body.luxury-dark-theme .header-button .theme-btn {
  background: linear-gradient(135deg, #d87419, #ffbb76) !important;
  border-radius: 16px !important;
  padding: 18px 34px !important;
  box-shadow: 0 18px 38px rgba(230, 120, 23, 0.28) !important;
}

body.luxury-dark-theme .hero-section-1 {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(230, 120, 23, 0.16), transparent 28%),
    linear-gradient(135deg, #050506 0%, #090910 48%, #040404 100%) !important;
}

body.luxury-dark-theme .hero-video-bg {
  background:
    radial-gradient(circle at 18% 22%, rgba(230, 120, 23, 0.2), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(163, 109, 43, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(5, 5, 8, 0.86), rgba(7, 7, 10, 0.58)),
    url("../img/home-1/hero/IMG_0314.jpg") center/cover !important;
  filter: saturate(0.9);
}

body.luxury-dark-theme .video-overlay {
  background:
    linear-gradient(90deg, rgba(4, 4, 6, 0.9) 0%, rgba(4, 4, 6, 0.56) 36%, rgba(4, 4, 6, 0.46) 100%),
    linear-gradient(180deg, rgba(4, 4, 6, 0.88) 0%, rgba(4, 4, 6, 0.2) 38%, rgba(4, 4, 6, 0.88) 100%) !important;
}

body.luxury-dark-theme .hero-1 .hero-content {
  padding-top: 150px;
  padding-bottom: 70px;
}

body.luxury-dark-theme .hero-wrapper.hero-layout-custom {
  grid-template-columns: minmax(320px, 1.12fr) minmax(340px, 520px);
  gap: 56px;
  align-items: end;
  min-height: calc(100vh - 140px);
}

body.luxury-dark-theme .hero-left-content {
  max-width: 720px;
}

body.luxury-dark-theme .hero-kicker-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

body.luxury-dark-theme .hero-kicker-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 245, 230, 0.8) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.luxury-dark-theme .luxury-badge-custom {
  margin-bottom: 24px;
}

body.luxury-dark-theme .luxury-badge-custom .text {
  font-size: 12px;
  letter-spacing: 0.65em;
  color: #ffbc78;
}

body.luxury-dark-theme .hero-headline-luxury {
  font-size: clamp(4.5rem, 9vw, 7.4rem) !important;
  letter-spacing: -0.04em;
  line-height: 0.92 !important;
  margin-bottom: 18px !important;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.52) !important;
}

body.luxury-dark-theme .gold-gradient-text {
  background: linear-gradient(90deg, #ffd4a6 0%, #e67817 52%, #ffbe79 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 4.2vw, 3.1rem) !important;
  line-height: 1.08;
}

body.luxury-dark-theme .hero-left-content .hero-description {
  max-width: 620px !important;
  margin-bottom: 34px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 1.05rem !important;
  line-height: 1.9 !important;
}

body.luxury-dark-theme .hero-luxury-actions {
  gap: 16px !important;
  margin-top: 0 !important;
}

body.luxury-dark-theme .luxury-btn-custom,
body.luxury-dark-theme .luxury-btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border-radius: 16px !important;
  padding: 16px 28px !important;
  letter-spacing: 0.16em !important;
}

body.luxury-dark-theme .luxury-btn-custom {
  box-shadow: 0 18px 34px rgba(230, 120, 23, 0.24) !important;
}

body.luxury-dark-theme .luxury-btn-outline-custom {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

body.luxury-dark-theme .hero-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 650px;
  margin-top: 34px;
}

body.luxury-dark-theme .hero-feature-item {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

body.luxury-dark-theme .hero-feature-item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff6e8;
  font-family: var(--lux-font-heading);
  font-size: 2rem;
  line-height: 1;
}

body.luxury-dark-theme .hero-feature-item span {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.luxury-dark-theme .hero-right-content {
  max-width: 520px !important;
}

body.luxury-dark-theme .hero-box {
  padding: 32px !important;
  border-radius: 32px !important;
  background:
    linear-gradient(180deg, rgba(14, 14, 18, 0.9), rgba(8, 8, 11, 0.84)) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}

body.luxury-dark-theme .hero-box .top-item {
  margin-bottom: 16px !important;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.luxury-dark-theme .hero-box .top-item h4 {
  color: #ffba73 !important;
  font-size: 12px !important;
  letter-spacing: 0.45em !important;
}

body.luxury-dark-theme .hero-box-intro {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 14px;
  line-height: 1.7;
}

body.luxury-dark-theme .hero-item {
  background: transparent !important;
}

body.luxury-dark-theme .hero-item .hero-image {
  position: relative;
  min-height: 320px;
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  overflow: hidden;
}

body.luxury-dark-theme .hero-item .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.72) 100%);
}

body.luxury-dark-theme .hero-box .hero-item .hero-image img {
  height: 320px !important;
  transform: scale(1.04);
  transition: transform 0.9s ease;
}

body.luxury-dark-theme .hero-item:hover .hero-image img {
  transform: scale(1.1);
}

body.luxury-dark-theme .hero-poster-overlay {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
}

body.luxury-dark-theme .hero-poster-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(230, 120, 23, 0.18);
  border: 1px solid rgba(255, 187, 117, 0.25);
  color: #ffd8b4 !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.luxury-dark-theme .hero-poster-overlay h5 {
  margin: 0 0 6px;
  color: #ffffff !important;
  font-size: 1.75rem;
  line-height: 1.02;
}

body.luxury-dark-theme .hero-poster-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 13px;
}

body.luxury-dark-theme .about-section::before,
body.luxury-dark-theme .about-section::after {
  opacity: 0.9;
}

body.luxury-dark-theme .about-section .about-wrapper {
  padding: 36px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

body.luxury-dark-theme .room-section .section-title-area,
body.luxury-dark-theme .our-services-section .section-title {
  margin-bottom: 28px;
}

body.luxury-dark-theme .room-box-item,
body.luxury-dark-theme .service-card {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.luxury-dark-theme .room-box-item .content-item {
  padding: 26px;
}

body.luxury-dark-theme .room-box-item .room-content h6 {
  color: #ffba73 !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

body.luxury-dark-theme .room-box-item .room-content .list li {
  color: rgba(255, 255, 255, 0.68) !important;
}

body.luxury-dark-theme .room-box-item .theme-btn,
body.luxury-dark-theme .about-content .hero-button-item .theme-btn,
body.luxury-dark-theme .service-card-item .theme-btn {
  border-radius: 14px !important;
}

body.luxury-dark-theme .services-desc {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.68) !important;
}

body.luxury-dark-theme .service-card {
  border-radius: 32px !important;
}

body.luxury-dark-theme .service-card .service-card-label {
  padding-top: 8px;
}

body.luxury-dark-theme .service-card .service-card-label h3 {
  font-size: 2rem !important;
}

body.luxury-dark-theme .testimonial-section,
body.luxury-dark-theme .brand-section {
  background:
    linear-gradient(180deg, rgba(8, 8, 12, 0.96), rgba(5, 5, 8, 0.96)) !important;
}

body.luxury-dark-theme .main-footer {
  background: linear-gradient(180deg, #101015 0%, #09090c 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-1 .hero-content {
    padding-top: 130px;
  }

  body.luxury-dark-theme .hero-wrapper.hero-layout-custom {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  body.luxury-dark-theme .hero-feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.luxury-dark-theme .hero-right-content {
    max-width: 100% !important;
  }

  body.luxury-dark-theme .about-section .about-wrapper {
    padding: 22px;
  }
}

@media (max-width: 767px) {

  body.luxury-dark-theme .index-transparent-header:not(.sticky) .header-logo img,
  body.luxury-dark-theme .index-transparent-header.sticky .header-logo-2 img {
    height: 70px !important;
  }

  body.luxury-dark-theme .hero-headline-luxury {
    font-size: clamp(3.3rem, 15vw, 4.8rem) !important;
  }

  body.luxury-dark-theme .gold-gradient-text {
    font-size: clamp(1.7rem, 8vw, 2.3rem) !important;
  }

  body.luxury-dark-theme .hero-feature-strip {
    grid-template-columns: 1fr;
  }

  body.luxury-dark-theme .hero-box {
    padding: 22px !important;
    border-radius: 24px !important;
  }

  body.luxury-dark-theme .hero-item .hero-image,
  body.luxury-dark-theme .hero-box .hero-item .hero-image img {
    min-height: 280px;
    height: 280px !important;
  }

  body.luxury-dark-theme .hero-poster-overlay h5 {
    font-size: 1.45rem;
  }
}@media (min-width: 992px) {
  body.luxury-dark-theme .hero-section-1 {
    overflow: hidden;
  }

  body.luxury-dark-theme .hero-1 .hero-content {
    min-height: calc(100vh - 40px);
    display: flex;
    align-items: center;
    padding-top: 130px;
    padding-bottom: 48px;
  }

  body.luxury-dark-theme .hero-wrapper.hero-layout-custom {
    display: block !important;
    position: relative;
    width: 100%;
    min-height: 700px;
    padding: 0 !important;
  }

  body.luxury-dark-theme .hero-left-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: min(49%, 700px);
    max-width: 700px;
    z-index: 3;
  }

  body.luxury-dark-theme .hero-right-content {
    position: absolute !important;
    right: 0;
    bottom: 28px;
    width: min(100%, 520px) !important;
    max-width: 520px !important;
    z-index: 3;
  }

  body.luxury-dark-theme .hero-kicker-row {
    gap: 16px;
    margin-bottom: 12px;
  }

  body.luxury-dark-theme .hero-kicker-row span {
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: none;
  }

  body.luxury-dark-theme .hero-headline-luxury {
    font-size: clamp(5rem, 8vw, 7rem) !important;
    margin-bottom: 16px !important;
  }

  body.luxury-dark-theme .gold-gradient-text {
    font-size: clamp(2.2rem, 4vw, 3rem) !important;
    line-height: 1.22;
  }

  body.luxury-dark-theme .hero-left-content .hero-description {
    max-width: 640px !important;
    margin-bottom: 28px !important;
  }

  body.luxury-dark-theme .hero-luxury-actions {
    max-width: 640px;
    margin-bottom: 12px;
  }

  body.luxury-dark-theme .hero-feature-strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 320px;
    margin-top: 12px;
  }

  body.luxury-dark-theme .hero-feature-item {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.luxury-dark-theme .hero-feature-item strong {
    display: inline-block;
    min-width: 60px;
    margin: 0;
    font-size: 2rem;
    color: #ffffff;
  }

  body.luxury-dark-theme .hero-feature-item span {
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.76) !important;
  }

  body.luxury-dark-theme .hero-box {
    padding: 26px 26px 22px !important;
    border-radius: 28px !important;
  }

  body.luxury-dark-theme .hero-box-intro {
    max-width: 360px;
    margin-bottom: 16px;
  }

  body.luxury-dark-theme .hero-item .hero-image,
  body.luxury-dark-theme .hero-box .hero-item .hero-image img {
    height: 220px !important;
    min-height: 220px;
  }

  body.luxury-dark-theme .hero-poster-overlay {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  body.luxury-dark-theme .hero-poster-tag {
    margin-bottom: 8px;
    font-size: 10px;
  }

  body.luxury-dark-theme .hero-poster-overlay h5 {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  body.luxury-dark-theme .hero-poster-overlay p {
    font-size: 11px;
    line-height: 1.5;
  }
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-wrapper.hero-layout-custom {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  body.luxury-dark-theme .hero-left-content,
  body.luxury-dark-theme .hero-right-content {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.luxury-dark-theme .hero-kicker-row span {
    padding: 0;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.74) !important;
    text-transform: none;
    letter-spacing: 0;
  }

  body.luxury-dark-theme .hero-feature-strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
  }

  body.luxury-dark-theme .hero-feature-item {
    display: flex;
    align-items: baseline;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  body.luxury-dark-theme .hero-feature-item strong {
    min-width: 60px;
    display: inline-block;
    margin: 0;
  }

  body.luxury-dark-theme .hero-feature-item span {
    letter-spacing: 0;
    text-transform: none;
  }
}body.luxury-dark-theme .hero-section-1 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 24%, rgba(230, 120, 23, 0.18), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(255, 208, 161, 0.12), transparent 24%),
    linear-gradient(125deg, #020202 0%, #09090d 48%, #040404 100%) !important;
}

body.luxury-dark-theme .hero-section-1::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 78%, rgba(230, 120, 23, 0.1), transparent 24%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0) 1px);
  background-size: auto, 160px 160px;
  opacity: 0.45;
}

body.luxury-dark-theme .hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(230, 120, 23, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(5, 5, 8, 0.84), rgba(7, 7, 10, 0.58)),
    #000 !important;
  filter: saturate(0.9) contrast(1.05);
}

body.luxury-dark-theme .video-overlay {
  background:
    linear-gradient(110deg, rgba(3, 3, 5, 0.94) 0%, rgba(3, 3, 5, 0.52) 46%, rgba(3, 3, 5, 0.88) 100%),
    linear-gradient(180deg, rgba(3, 3, 5, 0.82) 0%, rgba(3, 3, 5, 0.24) 38%, rgba(3, 3, 5, 0.92) 100%) !important;
}

body.luxury-dark-theme .hero-1 .hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  padding-top: clamp(132px, 14vh, 158px);
  padding-bottom: clamp(36px, 5vw, 58px);
}

body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
  position: relative;
  display: block !important;
  width: 100%;
  min-height: calc(100vh - 196px);
}

body.luxury-dark-theme .hero-left-content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(56%, 760px);
  max-width: 760px;
  z-index: 2;
}

body.luxury-dark-theme .hero-copy-stack {
  max-width: 690px;
}

body.luxury-dark-theme .hero-copy-stack>* {
  opacity: 0;
  transform: translateY(26px);
  animation: cinematicHeroReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.luxury-dark-theme .hero-copy-stack> :nth-child(1) {
  animation-delay: 0.08s;
}

body.luxury-dark-theme .hero-copy-stack> :nth-child(2) {
  animation-delay: 0.18s;
}

body.luxury-dark-theme .hero-copy-stack> :nth-child(3) {
  animation-delay: 0.28s;
}

body.luxury-dark-theme .hero-copy-stack> :nth-child(4) {
  animation-delay: 0.38s;
}

body.luxury-dark-theme .hero-copy-stack> :nth-child(5) {
  animation-delay: 0.48s;
}

body.luxury-dark-theme .hero-copy-stack> :nth-child(6) {
  animation-delay: 0.58s;
}

body.luxury-dark-theme .hero-kicker-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

body.luxury-dark-theme .hero-kicker-row span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 244, 230, 0.84) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.luxury-dark-theme .luxury-badge-custom {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

body.luxury-dark-theme .luxury-badge-custom .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 196, 135, 0), rgba(255, 196, 135, 0.92), rgba(255, 196, 135, 0));
}

body.luxury-dark-theme .luxury-badge-custom .text {
  color: #ffc994 !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

body.luxury-dark-theme .hero-overline {
  max-width: 560px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

body.luxury-dark-theme .hero-headline-luxury {
  margin-bottom: 22px !important;
  color: #fffdf7 !important;
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(4.1rem, 8vw, 7rem) !important;
  font-weight: 600 !important;
  line-height: 0.92 !important;
  letter-spacing: -0.05em;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.52) !important;
}

body.luxury-dark-theme .gold-gradient-text {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #ffe2bd 0%, #f0a85d 48%, #fff0d3 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2.15rem, 4.2vw, 3.35rem) !important;
  font-weight: 500 !important;
  line-height: 1.02;
}

body.luxury-dark-theme .hero-left-content .hero-description {
  max-width: 620px !important;
  margin-bottom: 34px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 1.02rem !important;
  line-height: 1.9 !important;
}

body.luxury-dark-theme .hero-luxury-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0 !important;
  margin-bottom: 34px;
}

body.luxury-dark-theme .luxury-btn-custom,
body.luxury-dark-theme .luxury-btn-outline-custom {
  min-height: 58px;
  border-radius: 16px !important;
  padding: 16px 28px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
}

body.luxury-dark-theme .luxury-btn-custom {
  background: linear-gradient(135deg, #d87419, #ffbb76) !important;
  box-shadow: 0 20px 40px rgba(230, 120, 23, 0.24) !important;
}

body.luxury-dark-theme .luxury-btn-custom:hover {
  transform: translateY(-2px);
}

body.luxury-dark-theme .luxury-btn-outline-custom {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
}

body.luxury-dark-theme .luxury-btn-outline-custom:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 197, 140, 0.42) !important;
}

body.luxury-dark-theme .hero-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 680px;
}

body.luxury-dark-theme .hero-feature-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

body.luxury-dark-theme .hero-feature-item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff8ef;
  font-family: "Cormorant Garamond", serif !important;
  font-size: 2rem;
  line-height: 1;
}

body.luxury-dark-theme .hero-feature-item span {
  color: rgba(255, 255, 255, 0.64) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.luxury-dark-theme .hero-right-content {
  position: absolute !important;
  right: clamp(0px, 2vw, 28px);
  bottom: 0;
  width: min(100%, 500px) !important;
  max-width: 500px !important;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  animation: cinematicHeroFloat 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

body.luxury-dark-theme .hero-slider-frame {
  position: relative;
}

body.luxury-dark-theme .hero-slider-frame::before {
  content: "";
  position: absolute;
  inset: -18px 26px auto -18px;
  height: 120px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.22), rgba(230, 120, 23, 0));
  filter: blur(16px);
  pointer-events: none;
}

body.luxury-dark-theme .hero-reference-slider {
  border-radius: 12px !important;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05)) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  padding: 30px !important;
  overflow: hidden;
  transition: all 0.5s ease;
}

body.luxury-dark-theme .hero-reference-slider:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1)) !important;
  border-color: rgba(230, 120, 23, 0.4) !important;
  box-shadow: 0 8px 32px rgba(230, 120, 23, 0.15) !important;
}

body.luxury-dark-theme .hero-reference-slider .top-item {
  margin-bottom: 20px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

body.luxury-dark-theme .hero-reference-slider .top-item h4 {
  margin: 0 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
  height: 140px !important;
  min-height: 140px;
  border-radius: 8px !important;
}

body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image {
  overflow: hidden;
}

body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
  width: 100%;
  object-fit: cover;
  transform: none;
}

body.luxury-dark-theme .hero-reference-slider .hero-item:hover .hero-image img {
  transform: translateY(-8px) scale(1.06) rotateX(4deg) rotateY(-4deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(230, 120, 23, 0.4);
}

@keyframes cinematicHeroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cinematicHeroFloat {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1199px) {
  body.luxury-dark-theme .hero-left-content {
    width: min(58%, 660px);
  }

  body.luxury-dark-theme .hero-right-content {
    width: min(100%, 450px) !important;
    max-width: 450px !important;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 120px !important;
    min-height: 120px;
  }
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-1 .hero-content {
    padding-top: 128px;
    padding-bottom: 42px;
  }

  body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  body.luxury-dark-theme .hero-left-content,
  body.luxury-dark-theme .hero-right-content {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    opacity: 1;
    animation: none;
  }

  body.luxury-dark-theme .hero-left-content {
    top: auto;
  }

  body.luxury-dark-theme .hero-copy-stack>* {
    opacity: 1;
    transform: none;
    animation: none;
  }

  body.luxury-dark-theme .hero-feature-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.luxury-dark-theme .hero-slider-frame::before {
    inset: -10px 18px auto -10px;
  }

  body.luxury-dark-theme .hero-reference-slider {
    padding: 26px !important;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 100px !important;
    min-height: 100px;
  }
}

@media (max-width: 767px) {
  body.luxury-dark-theme .hero-1 .hero-content {
    padding-top: 118px;
  }

  body.luxury-dark-theme .hero-kicker-row span {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  body.luxury-dark-theme .luxury-badge-custom {
    gap: 12px;
  }

  body.luxury-dark-theme .luxury-badge-custom .line {
    width: 36px;
  }

  body.luxury-dark-theme .luxury-badge-custom .text {
    letter-spacing: 0.28em;
  }

  body.luxury-dark-theme .hero-overline {
    letter-spacing: 0.18em;
  }

  body.luxury-dark-theme .hero-headline-luxury {
    font-size: clamp(3.25rem, 15vw, 4.7rem) !important;
  }

  body.luxury-dark-theme .gold-gradient-text {
    font-size: clamp(1.8rem, 8vw, 2.55rem) !important;
  }

  body.luxury-dark-theme .hero-left-content .hero-description {
    font-size: 0.95rem !important;
    line-height: 1.8 !important;
  }

  body.luxury-dark-theme .hero-luxury-actions {
    gap: 12px;
    margin-bottom: 26px;
  }

  body.luxury-dark-theme .luxury-btn-custom,
  body.luxury-dark-theme .luxury-btn-outline-custom {
    width: 100%;
    justify-content: center;
    padding: 15px 22px !important;
    text-align: center;
  }

  body.luxury-dark-theme .hero-feature-strip {
    grid-template-columns: 1fr;
  }

  body.luxury-dark-theme .hero-feature-item {
    padding: 16px 18px;
  }

  body.luxury-dark-theme .hero-reference-slider {
    padding: 22px !important;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 90px !important;
    min-height: 90px;
  }
}body.luxury-dark-theme .hero-section-1::after,
body.luxury-dark-theme .luxury-badge-custom,
body.luxury-dark-theme .hero-overline,
body.luxury-dark-theme .hero-feature-strip,
body.luxury-dark-theme .luxury-btn-outline-custom,
body.luxury-dark-theme .hero-slider-frame {
  display: none !important;
}

body.luxury-dark-theme .hero-video-bg {
  background: #000 !important;
  filter: saturate(0.58) brightness(0.72) contrast(1.04);
}

body.luxury-dark-theme .video-overlay {
  background:
    linear-gradient(90deg, rgba(2, 2, 4, 0.9) 0%, rgba(2, 2, 4, 0.54) 38%, rgba(2, 2, 4, 0.82) 100%),
    linear-gradient(180deg, rgba(2, 2, 4, 0.78) 0%, rgba(2, 2, 4, 0.24) 42%, rgba(2, 2, 4, 0.92) 100%) !important;
}

body.luxury-dark-theme .hero-1 .hero-content {
  padding-top: clamp(126px, 13vh, 150px);
  padding-bottom: 34px;
}

body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
  min-height: calc(100vh - 190px);
}

body.luxury-dark-theme .hero-left-content {
  top: 46%;
  width: min(34%, 430px);
  max-width: 430px;
}

body.luxury-dark-theme .hero-copy-stack {
  max-width: 400px;
}

body.luxury-dark-theme .hero-copy-stack>* {
  opacity: 1;
  transform: none;
  animation: none;
}

body.luxury-dark-theme .hero-kicker-row {
  margin-bottom: 18px;
}

body.luxury-dark-theme .hero-kicker-row span {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 225, 193, 0.88) !important;
  font-size: 10px;
  letter-spacing: 0.24em;
}

body.luxury-dark-theme .hero-headline-luxury {
  max-width: 360px;
  margin-bottom: 18px !important;
  font-size: clamp(3.8rem, 6vw, 6.2rem) !important;
  line-height: 0.9 !important;
}

body.luxury-dark-theme .gold-gradient-text {
  margin-top: 0;
  font-size: clamp(2rem, 3.7vw, 3rem) !important;
  font-style: italic;
}

body.luxury-dark-theme .hero-left-content .hero-description {
  max-width: 340px !important;
  margin-bottom: 26px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.98rem !important;
  line-height: 1.8 !important;
}

body.luxury-dark-theme .hero-luxury-actions {
  margin-bottom: 0;
}

body.luxury-dark-theme .luxury-btn-custom {
  min-width: 220px;
  min-height: 56px;
  padding: 15px 24px !important;
  font-size: 12px !important;
  letter-spacing: 0.16em !important;
}

body.luxury-dark-theme .hero-right-content {
  right: 0;
  bottom: 18px;
  width: min(62vw, 760px) !important;
  max-width: 760px !important;
}

body.luxury-dark-theme .hero-reference-slider {
  border-radius: 14px !important;
  padding: 28px !important;
}

body.luxury-dark-theme .hero-reference-slider .top-item {
  margin-bottom: 18px !important;
}

body.luxury-dark-theme .hero-reference-slider .top-item h4 {
  font-size: 16px !important;
  letter-spacing: 0.22em !important;
  color: #ffbe7b !important;
}

body.luxury-dark-theme .hero-reference-slider .hero-slider {
  overflow: hidden;
}

body.luxury-dark-theme .hero-reference-slider .hero-item {
  background: transparent !important;
}

body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
  height: 180px !important;
  min-height: 180px;
  border-radius: 10px !important;
}

body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
  transform: none !important;
}

body.luxury-dark-theme .hero-reference-slider .hero-item:hover .hero-image img {
  transform: scale(1.04) !important;
  box-shadow: none !important;
}

@media (max-width: 1399px) {
  body.luxury-dark-theme .hero-left-content {
    width: min(38%, 420px);
  }

  body.luxury-dark-theme .hero-right-content {
    width: min(60vw, 680px) !important;
    max-width: 680px !important;
  }
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    gap: 24px;
  }

  body.luxury-dark-theme .hero-left-content {
    width: 100%;
    max-width: 360px;
  }

  body.luxury-dark-theme .hero-copy-stack {
    max-width: 360px;
  }

  body.luxury-dark-theme .hero-right-content {
    width: 100% !important;
    max-width: 100% !important;
    bottom: auto;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 130px !important;
    min-height: 130px;
  }
}

@media (max-width: 767px) {
  body.luxury-dark-theme .hero-headline-luxury {
    max-width: 280px;
    font-size: clamp(2.9rem, 15vw, 4.2rem) !important;
  }

  body.luxury-dark-theme .gold-gradient-text {
    font-size: clamp(1.7rem, 8vw, 2.3rem) !important;
  }

  body.luxury-dark-theme .hero-left-content .hero-description {
    max-width: 300px !important;
    font-size: 0.92rem !important;
  }

  body.luxury-dark-theme .luxury-btn-custom {
    width: auto;
    min-width: 0;
  }

  body.luxury-dark-theme .hero-reference-slider {
    padding: 20px !important;
  }

  body.luxury-dark-theme .hero-reference-slider .top-item h4 {
    font-size: 13px !important;
    letter-spacing: 0.18em !important;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 90px !important;
    min-height: 90px;
  }
}:root {
  --lux-bg: #050505;
  --lux-bg-soft: #0d0d0f;
  --lux-surface: #141416;
  --lux-surface-strong: #1b1b1f;
  --lux-title: #f8f4ed;
  --lux-text: rgba(255, 255, 255, 0.72);
  --lux-text-soft: rgba(255, 255, 255, 0.58);
  --lux-line: rgba(255, 255, 255, 0.08);
  --lux-line-strong: rgba(230, 120, 23, 0.26);
  --lux-gold: #e67817;
  --lux-gold-light: #ffb067;
  --lux-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --lux-radius-lg: 34px;
  --lux-radius-md: 24px;
  --lux-radius-sm: 18px;
}

body.luxury-dark-theme,
body.luxury-dark-theme html {
  background: linear-gradient(180deg, #050505 0%, #0a0a0c 45%, #050505 100%) !important;
  color: var(--lux-title) !important;
  font-family: "Barlow", sans-serif !important;
}

body.luxury-dark-theme #smooth-wrapper,
body.luxury-dark-theme #smooth-content {
  background: transparent !important;
}

body.luxury-dark-theme h1,
body.luxury-dark-theme h2,
body.luxury-dark-theme h3,
body.luxury-dark-theme h4,
body.luxury-dark-theme h5,
body.luxury-dark-theme h6,
body.luxury-dark-theme .sec-title,
body.luxury-dark-theme .cinematic-title {
  font-family: "Outfit", sans-serif !important;
  color: var(--lux-title) !important;
}

body.luxury-dark-theme p,
body.luxury-dark-theme li,
body.luxury-dark-theme .text,
body.luxury-dark-theme .services-desc {
  color: var(--lux-text) !important;
  font-family: "Barlow", sans-serif !important;
}

body.luxury-dark-theme .section-padding {
  padding: 118px 0;
}

body.luxury-dark-theme .container,
body.luxury-dark-theme .container-fluid {
  position: relative;
  z-index: 2;
}

body.luxury-dark-theme .section-title,
body.luxury-dark-theme .section-title-area .section-title {
  max-width: 680px;
}

body.luxury-dark-theme .sub-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lux-gold-light) !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.32em !important;
  text-transform: uppercase !important;
}

body.luxury-dark-theme .sec-title {
  font-size: clamp(2.4rem, 4vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
}

body.luxury-dark-theme .gold-gradient-text {
  background: linear-gradient(90deg, var(--lux-gold-light) 0%, var(--lux-gold) 48%, #ffd8ae 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.luxury-dark-theme .theme-btn,
body.luxury-dark-theme .luxury-btn-custom,
body.luxury-dark-theme .header-button .theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 16px 28px !important;
  border: 1px solid transparent !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light)) !important;
  box-shadow: 0 18px 40px rgba(230, 120, 23, 0.22) !important;
  color: #fff !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease !important;
}

body.luxury-dark-theme .theme-btn::before,
body.luxury-dark-theme .luxury-btn-custom::before {
  display: none !important;
}

body.luxury-dark-theme .theme-btn:hover,
body.luxury-dark-theme .luxury-btn-custom:hover,
body.luxury-dark-theme .header-button .theme-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 46px rgba(230, 120, 23, 0.28) !important;
  color: #fff !important;
}

body.luxury-dark-theme .array-buttons button,
body.luxury-dark-theme .room-section .array-buttons button,
body.luxury-dark-theme .hotel-dining-section .array-buttons button {
  width: 54px;
  height: 54px;
  border: 1px solid var(--lux-line) !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
  transition: all 0.35s ease;
}

body.luxury-dark-theme .array-buttons button:hover {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light)) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
}

body.luxury-dark-theme .hero-section-1 {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 120, 23, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.62), rgba(5, 5, 5, 0.4)),
    #000 !important;
}

body.luxury-dark-theme .hero-video-bg {
  background: #000 !important;
  filter: saturate(0.68) brightness(0.66) contrast(1.05);
}

body.luxury-dark-theme .video-overlay {
  background:
    linear-gradient(90deg, rgba(3, 3, 5, 0.92) 0%, rgba(3, 3, 5, 0.58) 40%, rgba(3, 3, 5, 0.8) 100%),
    linear-gradient(180deg, rgba(3, 3, 5, 0.74) 0%, rgba(3, 3, 5, 0.2) 42%, rgba(3, 3, 5, 0.9) 100%) !important;
}

body.luxury-dark-theme .hero-1 .hero-content {
  min-height: 100vh;
  padding-top: clamp(128px, 13vh, 154px);
  padding-bottom: 38px;
}

body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
  min-height: calc(100vh - 192px);
}

body.luxury-dark-theme .hero-left-content {
  width: min(34%, 430px);
  max-width: 430px;
  top: 46%;
}

body.luxury-dark-theme .hero-copy-stack {
  max-width: 390px;
}

body.luxury-dark-theme .hero-kicker-row {
  margin-bottom: 18px;
}

body.luxury-dark-theme .hero-kicker-row span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 220, 184, 0.92) !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body.luxury-dark-theme .hero-headline-luxury {
  max-width: 360px;
  margin-bottom: 16px !important;
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(3.7rem, 5vw, 5.7rem) !important;
  font-weight: 700 !important;
  line-height: 0.9 !important;
  letter-spacing: -0.05em !important;
}

body.luxury-dark-theme .hero-headline-luxury .gold-gradient-text {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.95rem, 3.2vw, 2.8rem) !important;
  font-style: italic;
  font-weight: 400 !important;
}

body.luxury-dark-theme .hero-left-content .hero-description {
  max-width: 330px !important;
  margin-bottom: 24px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 1rem !important;
  line-height: 1.8 !important;
}

body.luxury-dark-theme .hero-right-content {
  right: 0;
  bottom: 22px;
  width: min(58vw, 700px) !important;
  max-width: 700px !important;
}

body.luxury-dark-theme .hero-reference-slider {
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(21, 21, 24, 0.94), rgba(12, 12, 14, 0.92)) !important;
  border: 1px solid var(--lux-line) !important;
  box-shadow: var(--lux-shadow) !important;
  padding: 28px !important;
}

body.luxury-dark-theme .hero-reference-slider .top-item {
  margin-bottom: 18px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

body.luxury-dark-theme .hero-reference-slider .top-item h4 {
  color: var(--lux-gold-light) !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
}

body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
  height: 180px !important;
  min-height: 180px;
  border-radius: 12px !important;
}

body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
  transform: none !important;
  object-fit: cover;
}

body.luxury-dark-theme .hero-reference-slider .hero-item:hover .hero-image img {
  transform: scale(1.04) !important;
  box-shadow: none !important;
}

body.luxury-dark-theme .about-section,
body.luxury-dark-theme .our-services-section,
body.luxury-dark-theme .brand-section.style-2 {
  background:
    linear-gradient(180deg, #09090b 0%, #111113 100%) !important;
}

body.luxury-dark-theme .room-section,
body.luxury-dark-theme .testimonial-section {
  background:
    linear-gradient(180deg, #060607 0%, #0d0d0f 100%) !important;
}

body.luxury-dark-theme .hotel-dining-section {
  background:
    linear-gradient(180deg, #0b0b0d 0%, #141417 100%) !important;
  padding: 118px 0;
}

body.luxury-dark-theme .about-wrapper,
body.luxury-dark-theme .hotel-dining-wrapper,
body.luxury-dark-theme .testimonial-wrapper {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--lux-line);
  border-radius: var(--lux-radius-lg);
  background: linear-gradient(145deg, rgba(22, 22, 26, 0.88), rgba(12, 12, 14, 0.92));
  box-shadow: var(--lux-shadow);
}

body.luxury-dark-theme .about-image img,
body.luxury-dark-theme .hotel-image img,
body.luxury-dark-theme .dining-image img {
  width: 100%;
  border-radius: 28px;
}

body.luxury-dark-theme .about-content .text {
  margin-top: 22px;
  margin-bottom: 28px;
  line-height: 1.9 !important;
}

body.luxury-dark-theme .list-item {
  margin-bottom: 30px;
}

body.luxury-dark-theme .list-item .list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--lux-text) !important;
}

body.luxury-dark-theme .list-item .list li i {
  color: var(--lux-gold) !important;
  margin-top: 5px;
}

body.luxury-dark-theme .hero-button-item {
  padding: 24px 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid var(--lux-line) !important;
  box-shadow: none !important;
}

body.luxury-dark-theme .hero-button-item .button-text,
body.luxury-dark-theme .hero-button-item .button-text .d-line {
  color: var(--lux-text-soft) !important;
}

body.luxury-dark-theme .hero-button-item .video-btn {
  border: 1px solid var(--lux-line);
  background: rgba(255, 255, 255, 0.04);
}

body.luxury-dark-theme .room-section .bg-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.76), rgba(5, 5, 6, 0.88));
}

body.luxury-dark-theme .room-section .section-title-area {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

body.luxury-dark-theme .room-box-item {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--lux-line);
  background: linear-gradient(150deg, rgba(20, 20, 23, 0.95), rgba(12, 12, 14, 0.96));
  box-shadow: var(--lux-shadow);
}

body.luxury-dark-theme .room-box-item .room-image {
  position: relative;
  overflow: hidden;
}

body.luxury-dark-theme .room-box-item .room-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.5) 100%);
}

body.luxury-dark-theme .room-box-item .room-image img {
  min-height: 320px;
  object-fit: cover;
}

body.luxury-dark-theme .room-box-item .content-item {
  padding: 28px;
}

body.luxury-dark-theme .room-box-item .room-content h6 {
  margin-bottom: 10px;
  color: var(--lux-gold-light) !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase;
}

body.luxury-dark-theme .room-box-item .room-content h4 a {
  color: var(--lux-title) !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 1.65rem;
}

body.luxury-dark-theme .room-box-item .room-content .list li,
body.luxury-dark-theme .room-box-item .room-content .list li i {
  color: var(--lux-text) !important;
}

body.luxury-dark-theme .our-services-section .section-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 56px !important;
}

body.luxury-dark-theme .service-card {
  min-height: 100%;
  overflow: hidden;
  border-radius: 30px !important;
  border: 1px solid var(--lux-line) !important;
  background: linear-gradient(150deg, #131316 0%, #0d0d0f 100%) !important;
  box-shadow: var(--lux-shadow);
}

body.luxury-dark-theme .service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0) 0%, rgba(5, 5, 6, 0.88) 100%);
  z-index: 1;
}

body.luxury-dark-theme .service-card-img img {
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

body.luxury-dark-theme .service-card:hover .service-card-img img {
  transform: scale(1.06);
}

body.luxury-dark-theme .service-card-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.5)) !important;
  z-index: 1;
}

body.luxury-dark-theme .service-card-label {
  position: absolute;
  inset: auto 28px 28px;
  z-index: 2;
}

body.luxury-dark-theme .service-badge {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--lux-gold-light) !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

body.luxury-dark-theme .service-card-label h3 {
  margin-bottom: 10px;
  color: #fff !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 2rem !important;
}

body.luxury-dark-theme .service-card-label p {
  margin: 0;
  max-width: 290px;
  color: rgba(255, 255, 255, 0.72) !important;
}

body.luxury-dark-theme .hotel-dining-content .text {
  margin: 20px 0 28px;
  color: var(--lux-text) !important;
}

body.luxury-dark-theme .dining-item {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--lux-line);
}

body.luxury-dark-theme .dining-image img,
body.luxury-dark-theme .hotel-image img {
  min-height: 520px;
  object-fit: cover;
}

body.luxury-dark-theme .testimonial-section {
  background-image: none !important;
}

body.luxury-dark-theme .testimonial-card-item,
body.luxury-dark-theme .testimonial-content .client-item {
  border-radius: 26px;
  border: 1px solid var(--lux-line);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: none;
}

body.luxury-dark-theme .testimonial-card-item {
  padding: 20px;
}

body.luxury-dark-theme .testimonial-wrapper .testimonial-card-item::before,
body.luxury-dark-theme .testimonial-wrapper .testimonial-card-item::after {
  display: none !important;
}

body.luxury-dark-theme .testimonial-wrapper .testimonial-card-item .content p,
body.luxury-dark-theme .testimonial-content p {
  color: var(--lux-text) !important;
}

body.luxury-dark-theme .testimonial-content .client-item {
  margin-top: 28px;
  padding: 22px 26px;
}

body.luxury-dark-theme .testimonial-content .client-item h6,
body.luxury-dark-theme .testimonial-content .client-item span,
body.luxury-dark-theme .testimonial-content .client-item b {
  color: #fff !important;
}

body.luxury-dark-theme .brand-section.style-2 {
  padding: 118px 0 124px;
}

body.luxury-dark-theme .brand-section.style-2 .section-title {
  margin-left: auto;
  margin-right: auto;
}

body.luxury-dark-theme .glow-overlay {
  height: 120px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.22), rgba(230, 120, 23, 0));
  filter: blur(20px);
}

body.luxury-dark-theme .brand-divider {
  width: 120px;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(230, 120, 23, 0.88), rgba(255, 255, 255, 0));
}

body.luxury-dark-theme .brand-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 154px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--lux-line);
  background: linear-gradient(145deg, rgba(21, 21, 24, 0.96), rgba(12, 12, 14, 0.96));
  box-shadow: var(--lux-shadow);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

body.luxury-dark-theme .brand-logo-card:hover {
  transform: translateY(-6px);
  border-color: var(--lux-line-strong);
}

body.luxury-dark-theme .brand-logo-card img {
  max-height: 56px;
  width: auto;
  opacity: 0.88;
}

body.luxury-dark-theme .main-footer {
  margin-top: 0 !important;
  border-top: 1px solid var(--lux-line);
  border-radius: 38px 38px 0 0;
  background: linear-gradient(180deg, #131316 0%, #09090b 100%) !important;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.28);
}

body.luxury-dark-theme .main-footer .footer-links h3,
body.luxury-dark-theme .main-footer .footer-logo+.text p {
  color: #fff !important;
}

body.luxury-dark-theme .main-footer .footer-links h3 {
  margin-bottom: 22px;
  font-family: "Outfit", sans-serif !important;
  font-size: 1.25rem !important;
}

body.luxury-dark-theme .main-footer .footer-links ul li a,
body.luxury-dark-theme .main-footer .text p,
body.luxury-dark-theme .luxury-hub-info .label,
body.luxury-dark-theme .luxury-hub-info .value {
  color: var(--lux-text) !important;
}

body.luxury-dark-theme .main-footer .footer-links ul li a:hover,
body.luxury-dark-theme .luxury-hub-item:hover .value {
  color: var(--lux-gold-light) !important;
}

body.luxury-dark-theme .luxury-hub-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--lux-line);
  background: rgba(255, 255, 255, 0.02);
}

body.luxury-dark-theme .luxury-hub-item i {
  color: var(--lux-gold) !important;
  font-size: 1.1rem;
  margin-top: 2px;
}

body.luxury-dark-theme .footer-social-links ul {
  display: flex;
  gap: 12px;
}

body.luxury-dark-theme .footer-social-links ul li a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--lux-line);
  background: rgba(255, 255, 255, 0.03);
}

body.luxury-dark-theme .footer-social-links ul li a:hover {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  border-color: transparent;
  color: #fff !important;
}

body.luxury-dark-theme .footer-copyright-text p {
  color: rgba(255, 255, 255, 0.38) !important;
}

@media (max-width: 1399px) {
  body.luxury-dark-theme .hero-right-content {
    width: min(58vw, 620px) !important;
    max-width: 620px !important;
  }

  body.luxury-dark-theme .service-card-img img {
    min-height: 380px;
  }
}

@media (max-width: 1199px) {

  body.luxury-dark-theme .section-padding,
  body.luxury-dark-theme .hotel-dining-section,
  body.luxury-dark-theme .brand-section.style-2 {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  body.luxury-dark-theme .hero-left-content {
    width: min(38%, 390px);
  }

  body.luxury-dark-theme .hero-right-content {
    width: min(56vw, 540px) !important;
    max-width: 540px !important;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 150px !important;
    min-height: 150px;
  }

  body.luxury-dark-theme .dining-image img,
  body.luxury-dark-theme .hotel-image img {
    min-height: 440px;
  }
}

@media (max-width: 991px) {

  body.luxury-dark-theme .section-padding,
  body.luxury-dark-theme .hotel-dining-section,
  body.luxury-dark-theme .brand-section.style-2 {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: auto;
  }

  body.luxury-dark-theme .hero-left-content,
  body.luxury-dark-theme .hero-right-content {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    opacity: 1;
    animation: none;
  }

  body.luxury-dark-theme .hero-copy-stack {
    max-width: 360px;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 128px !important;
    min-height: 128px;
  }

  body.luxury-dark-theme .room-section .section-title-area {
    margin-bottom: 34px;
  }

  body.luxury-dark-theme .service-card-img img {
    min-height: 340px;
  }

  body.luxury-dark-theme .about-wrapper,
  body.luxury-dark-theme .hotel-dining-wrapper,
  body.luxury-dark-theme .testimonial-wrapper {
    padding: 28px;
    border-radius: 28px;
  }
}

@media (max-width: 767px) {

  body.luxury-dark-theme .section-padding,
  body.luxury-dark-theme .hotel-dining-section,
  body.luxury-dark-theme .brand-section.style-2 {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  body.luxury-dark-theme .sec-title {
    font-size: clamp(2rem, 10vw, 2.8rem) !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content {
    padding-top: 118px;
  }

  body.luxury-dark-theme .hero-headline-luxury {
    max-width: 290px;
    font-size: clamp(3rem, 15vw, 4.2rem) !important;
  }

  body.luxury-dark-theme .hero-left-content .hero-description {
    max-width: 300px !important;
    font-size: 0.94rem !important;
  }

  body.luxury-dark-theme .hero-reference-slider {
    padding: 20px !important;
  }

  body.luxury-dark-theme .hero-reference-slider .top-item h4 {
    font-size: 12px !important;
    letter-spacing: 0.2em !important;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 92px !important;
    min-height: 92px;
  }

  body.luxury-dark-theme .room-box-item .content-item,
  body.luxury-dark-theme .luxury-hub-item {
    padding: 20px;
  }

  body.luxury-dark-theme .service-card-img img {
    min-height: 300px;
  }

  body.luxury-dark-theme .service-card-label {
    inset: auto 20px 20px;
  }

  body.luxury-dark-theme .service-card-label h3 {
    font-size: 1.6rem !important;
  }

  body.luxury-dark-theme .dining-image img,
  body.luxury-dark-theme .hotel-image img {
    min-height: 300px;
  }

  body.luxury-dark-theme .about-wrapper,
  body.luxury-dark-theme .hotel-dining-wrapper,
  body.luxury-dark-theme .testimonial-wrapper {
    padding: 22px;
    border-radius: 24px;
  }

  body.luxury-dark-theme .brand-logo-card {
    min-height: 120px;
  }

  body.luxury-dark-theme .main-footer {
    border-radius: 28px 28px 0 0;
  }
}body.luxury-dark-theme .about-section {
  position: relative;
  overflow: hidden;
}

body.luxury-dark-theme .about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(230, 120, 23, 0.12), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(255, 176, 103, 0.08), transparent 22%);
  pointer-events: none;
}

body.luxury-dark-theme .about-wrapper {
  padding: clamp(34px, 4vw, 48px);
}

body.luxury-dark-theme .about-image-stack {
  position: relative;
  padding-right: 34px;
  padding-bottom: 34px;
}

body.luxury-dark-theme .about-image-stack .about-image {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.32);
}

body.luxury-dark-theme .about-image-stack .about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.42) 100%);
}

body.luxury-dark-theme .about-image-stack .about-image img {
  min-height: 600px;
  object-fit: cover;
}

body.luxury-dark-theme .about-image-accent,
body.luxury-dark-theme .about-image-badge {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(22, 22, 26, 0.94), rgba(10, 10, 12, 0.94));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.36);
}

body.luxury-dark-theme .about-image-accent {
  left: 26px;
  bottom: 0;
  max-width: 280px;
  padding: 22px 24px;
  border-radius: 24px;
}

body.luxury-dark-theme .about-image-badge {
  right: 0;
  top: 36px;
  min-width: 210px;
  padding: 18px 20px;
  border-radius: 22px;
}

body.luxury-dark-theme .about-image-accent span,
body.luxury-dark-theme .about-image-badge span {
  display: block;
  margin-bottom: 10px;
  color: var(--lux-gold-light) !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.luxury-dark-theme .about-image-accent strong,
body.luxury-dark-theme .about-image-badge strong {
  display: block;
  color: #fff !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.35;
}

body.luxury-dark-theme .about-content {
  max-width: 560px;
  margin-left: auto;
}

body.luxury-dark-theme .about-content .section-title {
  max-width: 520px;
}

body.luxury-dark-theme .about-content .sec-title .gold-gradient-text {
  display: block;
  margin-top: 8px;
}

body.luxury-dark-theme .about-content .text {
  max-width: 520px;
  margin: 24px 0 30px;
  font-size: 1.02rem !important;
  line-height: 1.95 !important;
}

body.luxury-dark-theme .about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

body.luxury-dark-theme .about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  transition: transform 0.35s ease, border-color 0.35s ease;
}

body.luxury-dark-theme .about-feature-item:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 120, 23, 0.26);
}

body.luxury-dark-theme .about-feature-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(230, 120, 23, 0.18), rgba(255, 176, 103, 0.12));
  color: var(--lux-gold-light);
  font-size: 1rem;
}

body.luxury-dark-theme .about-feature-copy h4 {
  margin-bottom: 6px;
  color: #fff !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 1.02rem !important;
  font-weight: 600 !important;
}

body.luxury-dark-theme .about-feature-copy p {
  margin: 0;
  color: var(--lux-text) !important;
  font-size: 0.93rem;
  line-height: 1.7;
}

body.luxury-dark-theme .about-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

body.luxury-dark-theme .about-stat-item {
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

body.luxury-dark-theme .about-stat-item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff7ea;
  font-family: "Outfit", sans-serif !important;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

body.luxury-dark-theme .about-stat-item span {
  color: var(--lux-text-soft) !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.luxury-dark-theme .about-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(18, 18, 22, 0.92), rgba(10, 10, 12, 0.9));
}

body.luxury-dark-theme .about-cta-panel .button-text,
body.luxury-dark-theme .about-cta-panel .button-text .d-line {
  color: var(--lux-text-soft) !important;
}

body.luxury-dark-theme .about-cta-panel .button-text {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Outfit", sans-serif !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.luxury-dark-theme .about-cta-panel .video-btn {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #fff !important;
}

body.luxury-dark-theme .about-cta-panel .video-btn:hover {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light));
  border-color: transparent;
}

@media (max-width: 1199px) {
  body.luxury-dark-theme .about-image-stack .about-image img {
    min-height: 540px;
  }

  body.luxury-dark-theme .about-content {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  body.luxury-dark-theme .about-image-stack {
    max-width: 620px;
    margin: 0 auto;
    padding-right: 0;
    padding-bottom: 28px;
  }

  body.luxury-dark-theme .about-content {
    margin-left: 0;
    max-width: 100%;
  }

  body.luxury-dark-theme .about-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  body.luxury-dark-theme .about-wrapper {
    padding: 22px;
  }

  body.luxury-dark-theme .about-image-stack {
    padding-bottom: 20px;
  }

  body.luxury-dark-theme .about-image-stack .about-image {
    border-radius: 24px;
  }

  body.luxury-dark-theme .about-image-stack .about-image img {
    min-height: 360px;
  }

  body.luxury-dark-theme .about-image-accent {
    left: 14px;
    right: 14px;
    bottom: 0;
    max-width: none;
    padding: 18px;
  }

  body.luxury-dark-theme .about-image-badge {
    top: 16px;
    right: 16px;
    min-width: 0;
    padding: 14px 16px;
  }

  body.luxury-dark-theme .about-image-accent strong,
  body.luxury-dark-theme .about-image-badge strong {
    font-size: 1rem;
  }

  body.luxury-dark-theme .about-feature-grid,
  body.luxury-dark-theme .about-stat-strip {
    grid-template-columns: 1fr;
  }

  body.luxury-dark-theme .about-feature-item {
    padding: 16px;
  }

  body.luxury-dark-theme .about-cta-panel {
    padding: 18px;
  }

  body.luxury-dark-theme .about-cta-panel .theme-btn {
    width: 100%;
  }
}body.luxury-dark-theme .hero-section-1 {
  position: relative;
  isolation: isolate;
}

body.luxury-dark-theme .hero-video-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  background: #000 !important;
  filter: none !important;
}

body.luxury-dark-theme .video-overlay {
  z-index: 1 !important;
}

body.luxury-dark-theme .hero-1 .hero-content,
body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
  position: relative;
  z-index: 2;
}body.luxury-dark-theme .hero-section-1 {
  height: 100svh;
  min-height: 100svh;
  max-height: 100svh;
  overflow: hidden;
}

@supports (height: 100dvh) {
  body.luxury-dark-theme .hero-section-1 {
    height: 100dvh;
    min-height: 100dvh;
    max-height: 100dvh;
  }
}

body.luxury-dark-theme .hero-section-1 .container-fluid,
body.luxury-dark-theme .hero-section-1 .row,
body.luxury-dark-theme .hero-section-1 .hero-content,
body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
  height: 100%;
}

body.luxury-dark-theme .hero-1 .hero-content {
  min-height: 0;
  padding-top: clamp(104px, 10vh, 126px);
  padding-bottom: clamp(20px, 3vh, 28px);
}

body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
  min-height: 0;
}

body.luxury-dark-theme .hero-left-content {
  top: 50%;
  transform: translateY(-50%);
  width: min(34%, 420px);
  max-width: 420px;
}

body.luxury-dark-theme .hero-copy-stack {
  max-width: 380px;
}

body.luxury-dark-theme .hero-headline-luxury {
  max-width: 340px;
  margin-bottom: 14px !important;
  font-size: clamp(3.2rem, 4.8vw, 5.2rem) !important;
}

body.luxury-dark-theme .hero-headline-luxury .gold-gradient-text {
  font-size: clamp(1.75rem, 3vw, 2.55rem) !important;
}

body.luxury-dark-theme .hero-left-content .hero-description {
  max-width: 360px !important;
  margin-bottom: 18px !important;
  font-size: 0.96rem !important;
  line-height: 1.75 !important;
}

body.luxury-dark-theme .hero-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  max-width: 360px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

body.luxury-dark-theme .hero-feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.98rem;
  line-height: 1.55;
}

body.luxury-dark-theme .hero-feature-list li i {
  color: var(--lux-gold) !important;
  font-size: 0.9rem;
}

body.luxury-dark-theme .hero-luxury-actions {
  gap: 14px;
}

body.luxury-dark-theme .hero-right-content {
  right: clamp(0px, 1vw, 16px);
  bottom: clamp(12px, 2.5vh, 24px);
  width: min(35vw, 520px) !important;
  max-width: 520px !important;
}

body.luxury-dark-theme .hero-reference-slider {
  padding: 22px !important;
  border-radius: 16px !important;
}

body.luxury-dark-theme .hero-reference-slider .top-item {
  margin-bottom: 14px !important;
}

body.luxury-dark-theme .hero-reference-slider .top-item h4 {
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
}

body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
  height: 122px !important;
  min-height: 122px;
}

@media (max-width: 1199px) {
  body.luxury-dark-theme .hero-left-content {
    width: min(38%, 390px);
    max-width: 390px;
  }

  body.luxury-dark-theme .hero-right-content {
    width: min(39vw, 460px) !important;
    max-width: 460px !important;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 108px !important;
    min-height: 108px;
  }
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-section-1 {
    height: auto;
    min-height: 100svh;
    max-height: none;
  }

  @supports (height: 100dvh) {
    body.luxury-dark-theme .hero-section-1 {
      min-height: 100dvh;
    }
  }

  body.luxury-dark-theme .hero-section-1 .container-fluid,
  body.luxury-dark-theme .hero-section-1 .row,
  body.luxury-dark-theme .hero-section-1 .hero-content,
  body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    height: auto;
  }

  body.luxury-dark-theme .hero-1 .hero-content {
    padding-top: 112px;
    padding-bottom: 28px;
  }

  body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    gap: 22px;
  }

  body.luxury-dark-theme .hero-left-content,
  body.luxury-dark-theme .hero-right-content {
    width: 100% !important;
    max-width: 100% !important;
  }

  body.luxury-dark-theme .hero-copy-stack,
  body.luxury-dark-theme .hero-left-content .hero-description,
  body.luxury-dark-theme .hero-feature-list {
    max-width: 100% !important;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 118px !important;
    min-height: 118px;
  }
}

@media (max-width: 767px) {
  body.luxury-dark-theme .hero-1 .hero-content {
    padding-top: 104px;
    padding-bottom: 22px;
  }

  body.luxury-dark-theme .hero-headline-luxury {
    max-width: 280px;
    font-size: clamp(2.75rem, 13vw, 4rem) !important;
  }

  body.luxury-dark-theme .hero-headline-luxury .gold-gradient-text {
    font-size: clamp(1.55rem, 7vw, 2.2rem) !important;
  }

  body.luxury-dark-theme .hero-left-content .hero-description {
    font-size: 0.92rem !important;
    line-height: 1.7 !important;
  }

  body.luxury-dark-theme .hero-feature-list {
    gap: 8px 16px;
    margin-bottom: 18px;
  }

  body.luxury-dark-theme .hero-feature-list li {
    font-size: 0.92rem;
  }

  body.luxury-dark-theme .hero-luxury-actions {
    gap: 10px;
  }

  body.luxury-dark-theme .luxury-btn-custom,
  body.luxury-dark-theme .luxury-btn-outline-custom {
    width: 100%;
  }

  body.luxury-dark-theme .hero-reference-slider {
    padding: 18px !important;
  }

  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image,
  body.luxury-dark-theme .hero-reference-slider .hero-slider .hero-image img {
    height: 90px !important;
    min-height: 90px;
  }
}body.luxury-dark-theme .video-overlay {
  background:
    linear-gradient(90deg, rgba(8, 5, 16, 0.56) 0%, rgba(8, 5, 16, 0.22) 42%, rgba(8, 5, 16, 0.4) 100%),
    linear-gradient(180deg, rgba(5, 4, 10, 0.32) 0%, rgba(5, 4, 10, 0.08) 38%, rgba(5, 4, 10, 0.42) 100%) !important;
}

body.luxury-dark-theme .hero-video-bg {
  filter: saturate(0.82) brightness(0.86) contrast(1.02) !important;
}

body.luxury-dark-theme .hero-copy-stack {
  max-width: 470px;
}

body.luxury-dark-theme .hero-kicker-row {
  margin-bottom: 20px;
}

body.luxury-dark-theme .hero-kicker-row span {
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--lux-gold-light) !important;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3em;
}

body.luxury-dark-theme .hero-headline-luxury {
  max-width: 430px;
  margin-bottom: 18px !important;
  color: #ffffff !important;
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(3.5rem, 5.8vw, 6.2rem) !important;
  font-weight: 700 !important;
  line-height: 0.94 !important;
  letter-spacing: -0.045em !important;
}

body.luxury-dark-theme .hero-headline-luxury .gold-gradient-text {
  margin-top: 2px;
  background: linear-gradient(90deg, var(--lux-gold) 0%, var(--lux-gold-light) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2rem, 3.5vw, 3.25rem) !important;
  font-style: italic;
  font-weight: 500 !important;
  letter-spacing: -0.02em !important;
}

body.luxury-dark-theme .hero-left-content .hero-description {
  max-width: 440px !important;
  margin-bottom: 26px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
}

body.luxury-dark-theme .hero-feature-list,
body.luxury-dark-theme .luxury-btn-outline-custom {
  display: none !important;
}

body.luxury-dark-theme .hero-luxury-actions {
  gap: 0;
}

body.luxury-dark-theme .luxury-btn-custom {
  min-width: 230px;
}

@media (max-width: 991px) {

  body.luxury-dark-theme .hero-copy-stack,
  body.luxury-dark-theme .hero-left-content .hero-description {
    max-width: 100% !important;
  }
}

@media (max-width: 767px) {
  body.luxury-dark-theme .hero-kicker-row span {
    font-size: 0.74rem;
    letter-spacing: 0.22em;
  }

  body.luxury-dark-theme .hero-headline-luxury {
    max-width: 280px;
    font-size: clamp(2.9rem, 13vw, 4.2rem) !important;
  }

  body.luxury-dark-theme .hero-headline-luxury .gold-gradient-text {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
  }

  body.luxury-dark-theme .hero-left-content .hero-description {
    max-width: 310px !important;
    font-size: 0.94rem !important;
  }
}body.luxury-dark-theme #preloader {
  background: #ffffff !important;
  background-color: #ffffff !important;
  z-index: 10001 !important;
}

body.luxury-dark-theme #preloader p {
  color: #1c1c1c !important;
}

body.luxury-dark-theme .preloader-logo {
  display: block !important;
  filter: none !important;
}

body.luxury-dark-theme #preloader .spinner {
  border-top-color: var(--lux-gold) !important;
  border-left-color: var(--lux-gold) !important;
}

body.luxury-dark-theme #header-sticky:not(.sticky),
body.luxury-dark-theme .aa-header-fix:not(.sticky),
body.luxury-dark-theme .index-transparent-header:not(.sticky) {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

body.luxury-dark-theme #header-sticky.sticky,
body.luxury-dark-theme .aa-header-fix.sticky,
body.luxury-dark-theme .index-transparent-header.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  background-color: rgba(255, 255, 255, 0.96) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

body.luxury-dark-theme .header-logo img,
body.luxury-dark-theme .header-logo-2 img {
  width: 100%;
  max-width: 200px;
  height: auto !important;
  display: block;
  filter: none !important;
}

body.luxury-dark-theme #header-sticky:not(.sticky) .header-logo,
body.luxury-dark-theme .aa-header-fix:not(.sticky) .header-logo,
body.luxury-dark-theme .index-transparent-header:not(.sticky) .header-logo {
  display: block !important;
}

body.luxury-dark-theme #header-sticky:not(.sticky) .header-logo-2,
body.luxury-dark-theme .aa-header-fix:not(.sticky) .header-logo-2,
body.luxury-dark-theme .index-transparent-header:not(.sticky) .header-logo-2 {
  display: none !important;
}

body.luxury-dark-theme #header-sticky.sticky .header-logo,
body.luxury-dark-theme .aa-header-fix.sticky .header-logo,
body.luxury-dark-theme .index-transparent-header.sticky .header-logo {
  display: none !important;
}

body.luxury-dark-theme #header-sticky.sticky .header-logo-2,
body.luxury-dark-theme .aa-header-fix.sticky .header-logo-2,
body.luxury-dark-theme .index-transparent-header.sticky .header-logo-2 {
  display: block !important;
}

body.luxury-dark-theme #header-sticky.sticky .header-main,
body.luxury-dark-theme .aa-header-fix.sticky .header-main,
body.luxury-dark-theme .index-transparent-header.sticky .header-main {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

body.luxury-dark-theme #header-sticky.sticky .main-menu,
body.luxury-dark-theme .aa-header-fix.sticky .main-menu,
body.luxury-dark-theme .index-transparent-header.sticky .main-menu {
  background: linear-gradient(90deg, #1c2631 0%, #16202a 100%) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28) !important;
}

body.luxury-dark-theme #header-sticky.sticky .main-menu>nav>ul>li>a,
body.luxury-dark-theme .aa-header-fix.sticky .main-menu>nav>ul>li>a,
body.luxury-dark-theme .index-transparent-header.sticky .main-menu>nav>ul>li>a {
  color: rgba(255, 255, 255, 0.94) !important;
}

body.luxury-dark-theme #header-sticky.sticky .main-menu>nav>ul>li>a:hover,
body.luxury-dark-theme #header-sticky.sticky .main-menu>nav>ul>li.active>a,
body.luxury-dark-theme .aa-header-fix.sticky .main-menu>nav>ul>li>a:hover,
body.luxury-dark-theme .aa-header-fix.sticky .main-menu>nav>ul>li.active>a,
body.luxury-dark-theme .index-transparent-header.sticky .main-menu>nav>ul>li>a:hover,
body.luxury-dark-theme .index-transparent-header.sticky .main-menu>nav>ul>li.active>a {
  color: var(--lux-gold) !important;
}

body.luxury-dark-theme #header-sticky.sticky .header-button .theme-btn,
body.luxury-dark-theme .aa-header-fix.sticky .header-button .theme-btn,
body.luxury-dark-theme .index-transparent-header.sticky .header-button .theme-btn {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1px solid var(--lux-gold) !important;
  color: var(--lux-gold) !important;
  box-shadow: 0 12px 30px rgba(230, 120, 23, 0.14) !important;
}

body.luxury-dark-theme #header-sticky.sticky .header-button .theme-btn:hover,
body.luxury-dark-theme #header-sticky.sticky .header-button .theme-btn:focus-visible,
body.luxury-dark-theme .aa-header-fix.sticky .header-button .theme-btn:hover,
body.luxury-dark-theme .aa-header-fix.sticky .header-button .theme-btn:focus-visible,
body.luxury-dark-theme .index-transparent-header.sticky .header-button .theme-btn:hover,
body.luxury-dark-theme .index-transparent-header.sticky .header-button .theme-btn:focus-visible {
  background: linear-gradient(135deg, var(--lux-gold), var(--lux-gold-light)) !important;
  background-color: var(--lux-gold) !important;
  border-color: var(--lux-gold) !important;
  color: #ffffff !important;
  box-shadow: 0 18px 40px rgba(230, 120, 23, 0.28) !important;
}

body.luxury-dark-theme .hero-typing-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  width: fit-content;
  max-width: 100%;
}

body.luxury-dark-theme .hero-headline-static {
  display: block;
  white-space: nowrap;
  color: #fff8ef !important;
  text-shadow: 0 16px 34px rgba(0, 0, 0, 0.42), 0 0 24px rgba(255, 248, 239, 0.08);
}

body.luxury-dark-theme .hero-headline-dynamic-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 1.08em;
  padding-right: 0.14em;
}

body.luxury-dark-theme .hero-headline-dynamic {
  display: inline-block;
  font-family: "Cormorant Garamond", serif !important;
  font-size: clamp(2.05rem, 3.9vw, 3.2rem) !important;
  font-style: italic;
  font-weight: 500 !important;
  line-height: 1.02;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #fff3de 0%, #f7cf98 24%, #d7862d 62%, #fff0cf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 24px rgba(230, 120, 23, 0.18));
}

body.luxury-dark-theme .hero-copy-stack {
  max-width: max-content;
}

body.luxury-dark-theme .hero-headline-luxury {
  max-width: none;
  margin-bottom: 10px !important;
  color: #fff8ef !important;
  font-size: clamp(2.9rem, 4.35vw, 4.95rem) !important;
  font-weight: 800 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.05em !important;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.46), 0 0 30px rgba(255, 248, 239, 0.08);
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-copy-stack {
    max-width: 100%;
  }

  body.luxury-dark-theme .hero-typing-heading {
    width: 100%;
  }

  body.luxury-dark-theme .hero-headline-static {
    white-space: nowrap;
  }

  body.luxury-dark-theme .hero-headline-luxury {
    font-size: clamp(2.55rem, 9.5vw, 4rem) !important;
  }
}

body.luxury-dark-theme .hero-right-content {
  right: clamp(14px, 2.2vw, 40px);
  bottom: clamp(10px, 1.8vh, 22px);
  width: min(calc(100vw - clamp(56px, 7vw, 120px)), 1240px) !important;
  max-width: none !important;
}

body.luxury-dark-theme .upcoming-movies-panel {
  position: relative;
  overflow: hidden;
  padding: 20px 26px 22px !important;
  border-radius: 20px !important;
  background:
    radial-gradient(circle at top right, rgba(246, 151, 41, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(70, 32, 120, 0.58), rgba(33, 16, 60, 0.5)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(14px) saturate(135%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(135%) !important;
  box-shadow:
    0 22px 46px rgba(5, 2, 14, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02) !important;
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

body.luxury-dark-theme .upcoming-movies-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 197, 132, 0.16) !important;
  box-shadow:
    0 28px 56px rgba(5, 2, 14, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03) !important;
}

body.luxury-dark-theme .upcoming-movies-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, transparent 40%, rgba(215, 134, 45, 0.05) 100%);
  opacity: 0.78;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

body.luxury-dark-theme .upcoming-movies-panel:hover::before {
  opacity: 1;
}

body.luxury-dark-theme .upcoming-movies-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px !important;
}

body.luxury-dark-theme .upcoming-movies-copy {
  display: flex;
  align-items: center;
  max-width: 100%;
}

body.luxury-dark-theme .upcoming-movies-kicker {
  display: inline-flex;
  margin-bottom: 0;
  color: #ffae4e !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(255, 153, 0, 0.18);
  transition: color 0.35s ease, transform 0.35s ease, text-shadow 0.35s ease;
}

body.luxury-dark-theme .upcoming-movies-panel:hover .upcoming-movies-kicker {
  color: #ffc374 !important;
  transform: translateX(2px);
  text-shadow: 0 0 26px rgba(255, 166, 78, 0.28);
}

body.luxury-dark-theme .upcoming-movies-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  min-width: 74px;
  flex-shrink: 0;
}

body.luxury-dark-theme .upcoming-movies-pagination {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  margin-top: 0 !important;
  min-width: 74px;
  gap: 8px;
  position: relative;
  z-index: 3;
}

body.luxury-dark-theme .upcoming-movies-pagination.swiper-pagination-lock {
  display: inline-flex !important;
}

body.luxury-dark-theme .upcoming-movies-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  margin: 0 !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.22);
  opacity: 1 !important;
  transition: width 0.35s ease, background-color 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

body.luxury-dark-theme .upcoming-movies-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: linear-gradient(90deg, var(--lux-gold), var(--lux-gold-light));
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(230, 120, 23, 0.35);
}

body.luxury-dark-theme .upcoming-movies-slider {
  overflow: visible;
}

body.luxury-dark-theme .upcoming-movies-slider .swiper-slide {
  height: auto;
}

body.luxury-dark-theme .upcoming-movies-slider .swiper-wrapper {
  align-items: stretch;
}

body.luxury-dark-theme .upcoming-movie-card {
  display: block;
  height: 100%;
  padding: 0;
  border-radius: 22px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform 0.55s ease;
}

body.luxury-dark-theme .upcoming-movie-card:hover {
  transform: translateY(-8px);
}

body.luxury-dark-theme .upcoming-movie-card .hero-image {
  position: relative;
  overflow: hidden;
  height: 188px !important;
  min-height: 188px;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0d0b14;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: transform 0.55s ease, border-color 0.55s ease, box-shadow 0.55s ease;
}

body.luxury-dark-theme .upcoming-movie-card .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 24%, rgba(5, 4, 10, 0.18) 66%, rgba(5, 4, 10, 0.46) 100%);
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.55s ease, background 0.55s ease;
}

body.luxury-dark-theme .upcoming-movie-card .hero-image::before {
  content: "";
  position: absolute;
  inset: -20% auto auto -60%;
  width: 58%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(18deg) translateX(0);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: transform 0.8s ease, opacity 0.45s ease;
}

body.luxury-dark-theme .upcoming-movie-card .hero-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s ease;
  filter: saturate(1.04) contrast(1.03) brightness(0.95);
}

body.luxury-dark-theme .upcoming-movie-card:hover .hero-image img {
  transform: scale(1.09);
  filter: saturate(1.1) contrast(1.06) brightness(1.02);
}

body.luxury-dark-theme .upcoming-movie-card:hover .hero-image {
  transform: translateY(-4px);
  border-color: rgba(255, 196, 132, 0.3);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 196, 132, 0.12),
    0 0 26px rgba(215, 134, 45, 0.18);
}

body.luxury-dark-theme .upcoming-movie-card:hover .hero-image::after {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 0, 0, 0) 24%, rgba(5, 4, 10, 0.08) 62%, rgba(5, 4, 10, 0.38) 100%);
}

body.luxury-dark-theme .upcoming-movie-card:hover .hero-image::before {
  opacity: 1;
  transform: rotate(18deg) translateX(320%);
}

@media (max-width: 1399px) {
  body.luxury-dark-theme .hero-right-content {
    right: 24px;
    width: min(calc(100vw - 56px), 1120px) !important;
  }

  body.luxury-dark-theme .upcoming-movie-card .hero-image {
    height: 182px !important;
    min-height: 182px;
  }
}

@media (max-width: 1199px) {
  body.luxury-dark-theme .hero-right-content {
    right: 18px;
    width: min(calc(100vw - 36px), 920px) !important;
  }

  body.luxury-dark-theme .upcoming-movies-panel {
    padding: 20px 20px 18px !important;
  }

  body.luxury-dark-theme .upcoming-movies-meta,
  body.luxury-dark-theme .upcoming-movies-pagination {
    min-width: 68px;
  }

  body.luxury-dark-theme .upcoming-movie-card .hero-image {
    height: 172px !important;
    min-height: 172px;
  }
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-right-content {
    right: 0;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.luxury-dark-theme .upcoming-movies-panel {
    padding: 18px 18px 20px !important;
  }

  body.luxury-dark-theme .upcoming-movies-head {
    align-items: center;
  }

  body.luxury-dark-theme .upcoming-movies-meta {
    width: auto;
  }

  body.luxury-dark-theme .upcoming-movie-card .hero-image {
    height: 184px !important;
    min-height: 184px;
  }
}

@media (max-width: 767px) {
  body.luxury-dark-theme .upcoming-movies-panel {
    padding: 18px !important;
    border-radius: 24px !important;
  }

  body.luxury-dark-theme .upcoming-movies-head {
    gap: 12px;
  }

  body.luxury-dark-theme .upcoming-movies-meta,
  body.luxury-dark-theme .upcoming-movies-pagination {
    min-width: 60px;
  }

  body.luxury-dark-theme .upcoming-movies-kicker {
    font-size: 10px;
    letter-spacing: 0.26em;
  }

  body.luxury-dark-theme .upcoming-movie-card .hero-image {
    height: 178px !important;
    min-height: 178px;
  }
}

@media (max-width: 575px) {
  body.luxury-dark-theme .hero-right-content {
    width: 100% !important;
  }

  body.luxury-dark-theme .upcoming-movies-panel {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  body.luxury-dark-theme .upcoming-movies-head {
    margin-bottom: 14px !important;
  }

  body.luxury-dark-theme .upcoming-movies-kicker {
    font-size: 9px;
    letter-spacing: 0.22em;
  }

  body.luxury-dark-theme .upcoming-movie-card .hero-image {
    height: 164px !important;
    min-height: 164px;
  }
}body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
  display: block;
  position: relative;
  min-height: clamp(720px, 82vh, 860px);
}

body.luxury-dark-theme .hero-left-content {
  max-width: min(56%, 760px);
}

body.luxury-dark-theme .hero-right-content {
  position: absolute !important;
  right: clamp(18px, 2vw, 42px);
  bottom: clamp(12px, 2.4vh, 34px);
  width: clamp(420px, 40%, 560px) !important;
  max-width: 40% !important;
  margin-top: 0 !important;
  z-index: 3;
}

body.luxury-dark-theme .upcoming-movies-panel {
  position: relative;
  width: 100%;
  margin-top: 0;
  padding: 28px 26px 28px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(135deg, rgba(118, 48, 255, 0.24), rgba(27, 8, 62, 0.9) 52%, rgba(78, 26, 164, 0.6) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow:
    0 30px 80px rgba(6, 0, 18, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
  overflow: hidden;
  transform: none !important;
}

body.luxury-dark-theme .upcoming-movies-panel:hover {
  transform: none !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow:
    0 34px 84px rgba(6, 0, 18, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

body.luxury-dark-theme .upcoming-movies-panel::after {
  content: "";
  position: absolute;
  inset: auto auto -80px -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 151, 42, 0.18) 0%, rgba(255, 151, 42, 0) 72%);
  pointer-events: none;
}

body.luxury-dark-theme .upcoming-movies-panel::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -70px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 78, 255, 0.26) 0%, rgba(122, 78, 255, 0) 72%);
  opacity: 0.95;
  pointer-events: none;
}

body.luxury-dark-theme .upcoming-movies-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px !important;
}

body.luxury-dark-theme .upcoming-movies-copy,
body.luxury-dark-theme .upcoming-movies-meta {
  position: relative;
  z-index: 1;
}

body.luxury-dark-theme .upcoming-movies-copy {
  max-width: none;
}

body.luxury-dark-theme .upcoming-movies-kicker {
  display: inline-block;
  color: #ff971f !important;
  font-family: 'Onest', sans-serif !important;
  font-size: clamp(15px, 1.2vw, 22px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.34em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  margin: 0 !important;
  white-space: normal;
  text-shadow: 0 0 22px rgba(255, 151, 31, 0.18);
  transform: none !important;
}

body.luxury-dark-theme .upcoming-movies-panel:hover .upcoming-movies-kicker {
  color: #ff971f !important;
  transform: none !important;
  text-shadow: 0 0 22px rgba(255, 151, 31, 0.18);
}

body.luxury-dark-theme .upcoming-movies-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 90px;
}

body.luxury-dark-theme .upcoming-movies-pagination {
  display: inline-flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: auto !important;
  min-width: auto;
  margin-top: 0 !important;
}

body.luxury-dark-theme .upcoming-movies-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  margin: 0 !important;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
  transition: all 0.35s ease;
}

body.luxury-dark-theme .upcoming-movies-pagination .swiper-pagination-bullet-active {
  width: 30px;
  background: linear-gradient(90deg, #ff971f 0%, #ffb347 100%);
  box-shadow: 0 0 18px rgba(255, 151, 31, 0.34);
  transform: none;
}

body.luxury-dark-theme .upcoming-movies-slider {
  position: relative;
  z-index: 1;
  overflow: visible;
}

body.luxury-dark-theme .upcoming-movies-slider .swiper-wrapper {
  align-items: stretch;
}

body.luxury-dark-theme .upcoming-movies-slider .swiper-slide {
  height: auto;
}

body.luxury-dark-theme .upcoming-movie-card {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  transform: none !important;
}

body.luxury-dark-theme .upcoming-movie-card:hover {
  transform: none !important;
}

body.luxury-dark-theme .upcoming-movie-card .hero-image {
  position: relative;
  height: clamp(122px, 11vw, 152px) !important;
  min-height: 0;
  border-radius: 22px !important;
  overflow: hidden;
  background: rgba(10, 6, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 48px rgba(5, 0, 16, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: none !important;
}

body.luxury-dark-theme .upcoming-movie-card .hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18));
  opacity: 1;
}

body.luxury-dark-theme .upcoming-movie-card .hero-image::before {
  display: none;
}

body.luxury-dark-theme .upcoming-movie-card .hero-image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 0.7s ease, filter 0.7s ease;
  filter: none;
}

body.luxury-dark-theme .upcoming-movie-card:hover .hero-image {
  transform: none !important;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 52px rgba(5, 0, 16, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

body.luxury-dark-theme .upcoming-movie-card:hover .hero-image::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.16));
}

body.luxury-dark-theme .upcoming-movie-card:hover .hero-image img {
  transform: scale(1.06);
  filter: saturate(1.06);
}

@media (max-width: 1399px) {
  body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    min-height: clamp(690px, 78vh, 800px);
  }

  body.luxury-dark-theme .hero-left-content {
    max-width: min(54%, 680px);
  }

  body.luxury-dark-theme .hero-right-content {
    width: clamp(390px, 41%, 500px) !important;
    max-width: 41% !important;
  }

  body.luxury-dark-theme .upcoming-movies-panel {
    padding: 24px !important;
  }
}

@media (max-width: 1199px) {
  body.luxury-dark-theme .hero-right-content {
    right: 14px;
    bottom: 8px;
    width: clamp(350px, 43%, 430px) !important;
    max-width: 43% !important;
    margin-top: 0 !important;
  }

  body.luxury-dark-theme .hero-left-content {
    max-width: min(52%, 560px);
  }

  body.luxury-dark-theme .upcoming-movies-panel {
    padding: 22px !important;
  }

  body.luxury-dark-theme .upcoming-movies-kicker {
    font-size: 14px !important;
    letter-spacing: 0.26em !important;
  }
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    min-height: auto;
  }

  body.luxury-dark-theme .hero-left-content {
    max-width: 100%;
  }

  body.luxury-dark-theme .hero-right-content {
    position: relative !important;
    right: auto;
    bottom: auto;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 24px !important;
  }

  body.luxury-dark-theme .upcoming-movies-head {
    gap: 16px;
    margin-bottom: 22px !important;
  }

  body.luxury-dark-theme .upcoming-movies-panel {
    padding: 24px !important;
    border-radius: 24px !important;
  }

  body.luxury-dark-theme .upcoming-movie-card .hero-image {
    height: 176px !important;
  }
}

@media (max-width: 767px) {
  body.luxury-dark-theme .upcoming-movies-panel {
    padding: 22px 18px 24px !important;
    border-radius: 22px !important;
  }

  body.luxury-dark-theme .upcoming-movies-head {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 18px !important;
  }

  body.luxury-dark-theme .upcoming-movies-kicker {
    font-size: 18px !important;
    letter-spacing: 0.3em !important;
  }

  body.luxury-dark-theme .upcoming-movies-meta {
    width: 100%;
    justify-content: flex-start;
  }

  body.luxury-dark-theme .upcoming-movie-card .hero-image {
    height: 164px !important;
  }
}

@media (max-width: 575px) {
  body.luxury-dark-theme .upcoming-movies-panel {
    padding: 20px 16px 22px !important;
  }

  body.luxury-dark-theme .upcoming-movies-kicker {
    font-size: 16px !important;
    letter-spacing: 0.22em !important;
  }

  body.luxury-dark-theme .upcoming-movie-card .hero-image {
    height: 150px !important;
    border-radius: 18px !important;
  }
}body.luxury-dark-theme .hero-1 {
  min-height: 100vh !important;
  height: 100vh !important;
  position: relative !important;
  overflow: hidden !important;
  
  z-index: 10;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  
  position: relative !important;
  height: 100% !important;
  min-height: 100vh !important;
  padding: 0 5% !important;
  
  overflow: hidden !important;
  z-index: 10;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-left-content {
  position: relative !important;
  max-width: min(46%, 720px) !important;
  z-index: 2 !important;
}

body.luxury-dark-theme .hero-1,
body.luxury-dark-theme .hero-1 .container-fluid,
body.luxury-dark-theme .hero-1 .row,
body.luxury-dark-theme .hero-1 .hero-content {
  position: relative !important;
  z-index: 50 !important;
  overflow: visible !important;
}@media (min-width: 992px) {
  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content {
    position: absolute !important;
    left: auto !important;
    top: auto !important;
    right: clamp(40px, 5vw, 100px) !important;
    
    bottom: clamp(40px, 6vh, 120px) !important;
    
    width: min(48vw, 760px) !important;
    max-width: 760px !important;
    min-width: 0 !important;
    margin: 0 !important;
    align-self: auto !important;
    z-index: 99 !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.9) !important;
    
    border-radius: 28px !important;
    transition: transform 0.5s ease;
  }
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-panel {
  width: 100% !important;
  margin: 0 !important;
  padding: 28px 24px 28px !important;
  border-radius: 28px !important;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-head {
  margin-bottom: 20px !important;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-kicker {
  font-size: clamp(16px, 1.4vw, 24px) !important;
  letter-spacing: 0.32em !important;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image {
  height: clamp(120px, 10.2vw, 154px) !important;
}

@media (max-width: 1399px) {
  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    min-height: 100vh !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-left-content {
    max-width: min(50%, 640px) !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content {
    bottom: 50px !important;
    right: 50px !important;
    width: 46% !important;
    max-width: 46% !important;
  }
}

@media (max-width: 1199px) {
  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    min-height: 100vh !important;
    padding-bottom: 0 !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-left-content {
    max-width: min(46%, 520px) !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content {
    right: 30px !important;
    bottom: 40px !important;
    width: 48% !important;
    max-width: 48% !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-panel {
    padding: 22px !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image {
    height: 142px !important;
  }
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    min-height: 100vh !important;
    padding: 120px 5% 60px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-left-content {
    max-width: 100% !important;
    position: relative !important;
    text-align: left;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 600px !important;
    margin-top: 50px !important;
    z-index: 10 !important;
    box-shadow: none !important;
    align-self: center !important;
    
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image {
    height: 176px !important;
  }
}body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-panel {
  padding: 24px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(15, 16, 22, 0.92), rgba(7, 8, 12, 0.96)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    0 34px 84px rgba(3, 3, 8, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 0 1px rgba(255, 166, 78, 0.05) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-panel::before {
  top: -100px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.2) 0%, rgba(230, 120, 23, 0) 72%);
  opacity: 1;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-panel::after {
  inset: auto auto -90px -70px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 72%);
  opacity: 0.9;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-head {
  align-items: center;
  margin-bottom: 18px !important;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-kicker {
  color: #ffbe7b !important;
  font-family: "Outfit", sans-serif !important;
  font-size: clamp(13px, 0.9vw, 15px) !important;
  font-weight: 700 !important;
  letter-spacing: 0.3em !important;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.26);
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: linear-gradient(90deg, #e67817 0%, #ffbf7c 100%);
  box-shadow: 0 0 18px rgba(230, 120, 23, 0.28);
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-slider {
  overflow: hidden;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-slider .swiper-wrapper {
  align-items: stretch !important;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-slider .swiper-slide {
  height: auto;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card {
  height: 100%;
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image {
  height: clamp(150px, 11vw, 182px) !important;
  border-radius: 20px !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.74), rgba(9, 9, 12, 0.92));
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 24%, rgba(4, 5, 9, 0.06) 55%, rgba(4, 5, 9, 0.38) 100%);
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image img {
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card:hover .hero-image {
  transform: translateY(-4px) !important;
  border-color: rgba(255, 190, 123, 0.32);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 190, 123, 0.08),
    0 0 28px rgba(230, 120, 23, 0.14);
}

body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card:hover .hero-image img {
  transform: scale(1.06);
}

@media (max-width: 1399px) {
  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content {
    bottom: clamp(90px, 11vh, 140px) !important;
    width: min(54vw, 760px) !important;
    max-width: 760px !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image {
    height: 170px !important;
  }
}

@media (max-width: 1199px) {
  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content {
    right: 14px !important;
    bottom: clamp(80px, 10vh, 120px) !important;
    width: min(56vw, 640px) !important;
    max-width: 640px !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-panel {
    padding: 22px !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image {
    height: 156px !important;
  }
}

@media (max-width: 991px) {
  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell {
    padding-bottom: clamp(40px, 7vh, 72px) !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content {
    margin-bottom: clamp(24px, 5vh, 56px) !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-panel {
    padding: 24px !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image {
    height: 184px !important;
  }
}

@media (max-width: 767px) {
  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-head {
    padding-bottom: 0;
    border-bottom: 0;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movies-kicker {
    font-size: 15px !important;
    letter-spacing: 0.24em !important;
  }

  body.luxury-dark-theme .hero-1 .hero-content .hero-wrapper.hero-layout-custom.hero-cinematic-shell .hero-right-content .upcoming-movie-card .hero-image {
    height: 170px !important;
  }
}body.luxury-dark-theme .about-section {
  background-color: transparent !important;
  position: relative !important;
  z-index: 10 !important;
  padding: 120px 0 120px !important;
  
  border-top: 1px solid rgba(255, 255, 255, 0.03) !important;
}

@media (max-width: 991px) {
  body.luxury-dark-theme .about-section {
    padding: 90px 0 90px !important;
    
  }
}

body.luxury-dark-theme .luxury-about-redesign .about-wrapper {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}body.luxury-dark-theme .about-section .sub-title {
  color: #e6b06c !important;
  
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.4em !important;
  text-transform: uppercase !important;
  margin-bottom: 24px !important;
  display: inline-block;
}

body.luxury-dark-theme .about-section .sec-title {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: clamp(24px, 2vw, 36px) !important;
  font-weight: 300 !important;
  
  line-height: 1.3 !important;
  margin-bottom: 25px !important;
  letter-spacing: 0.02em !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

body.luxury-dark-theme .about-section .sec-title .luxury-gradient-text {
  background: linear-gradient(90deg, #e67817 0%, #ffb067 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  
  font-weight: 300 !important;
  font-style: italic !important;
}

body.luxury-dark-theme .about-section p.text {
  color: #a3afb7 !important;
  font-size: 16px !important;
  
  line-height: 1.6 !important;
  font-weight: 300 !important;
  margin-bottom: 35px !important;
  max-width: 95%;
  letter-spacing: 0.01em;
}body.luxury-dark-theme .luxury-about-redesign .about-feature-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  margin-bottom: 50px !important;
}

body.luxury-dark-theme .luxury-about-redesign .about-feature-item {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: none !important;
  transition: all 0.3s ease !important;
}

body.luxury-dark-theme .luxury-about-redesign .about-feature-item:hover {
  background: transparent !important;
  transform: translateX(5px) !important;
}

body.luxury-dark-theme .luxury-about-redesign .about-feature-icon {
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6b06c !important;
  font-size: 20px !important;
}

body.luxury-dark-theme .luxury-about-redesign .about-feature-item:hover .about-feature-icon {
  background: transparent !important;
  color: #ffffff !important;
}

body.luxury-dark-theme .luxury-about-redesign .about-feature-copy h4 {
  color: #cccccc !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  font-family: 'Outfit', sans-serif !important;
  letter-spacing: 0.02em !important;
  margin: 0 !important;
}body.luxury-dark-theme .luxury-about-redesign .about-cta-panel {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 575px) {
  body.luxury-dark-theme .luxury-about-redesign .about-cta-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
}

body.luxury-dark-theme .luxury-about-redesign .about-cta-panel .theme-btn {
  background: transparent !important;
  color: #e6b06c !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 16px 36px !important;
  border-radius: 0px !important;
  border: 1px solid #e6b06c !important;
  box-shadow: none !important;
  transition: all 0.4s ease !important;
  font-family: 'Outfit', sans-serif !important;
}

body.luxury-dark-theme .luxury-about-redesign .about-cta-panel .theme-btn:hover {
  background: #e6b06c !important;
  color: #0b0c10 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 20px rgba(230, 176, 108, 0.15) !important;
}

body.luxury-dark-theme .luxury-about-redesign .button-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.luxury-dark-theme .luxury-about-redesign .button-text .d-line {
  color: #a4aab4 !important;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif !important;
}

body.luxury-dark-theme .luxury-about-redesign .video-btn {
  width: 50px !important;
  height: 50px !important;
  min-width: 50px;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  background: transparent !important;
  transition: all 0.4s ease !important;
}

body.luxury-dark-theme .luxury-about-redesign .video-btn:hover {
  border-color: #e6b06c !important;
  color: #e6b06c !important;
  transform: scale(1.05);
}body.luxury-dark-theme .luxury-about-redesign .about-image {
  position: relative;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  margin-right: 40px;
}

@media (max-width: 991px) {
  body.luxury-dark-theme .luxury-about-redesign .about-image {
    margin-right: 0;
    margin-bottom: 50px;
  }
}

body.luxury-dark-theme .luxury-about-redesign .about-image img {
  border-radius: 4px;
  
  box-shadow: -20px -20px 0px rgba(230, 176, 108, 0.05);
  
  border: none;
  aspect-ratio: 4/5;
  object-fit: cover;
  position: relative;
  z-index: 2;
  transition: all 0.6s ease;
}

body.luxury-dark-theme .luxury-about-redesign .about-image:hover img {
  box-shadow: -15px -15px 0px rgba(230, 176, 108, 0.1);
  transform: translate(5px, 5px);
}

body.luxury-dark-theme .luxury-about-redesign .about-image::after {
  display: none !important;
}.ix-hero__right,
body.luxury-dark-theme .ix-hero__right,
body.surat-luxury-page .ix-hero__right,
body .ix-hero__right {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  flex: 1 1 auto !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
  min-width: 0 !important;
  overflow: visible !important;
}

.ix-hero__slider-panel,
body.luxury-dark-theme .ix-hero__slider-panel,
body.surat-luxury-page .ix-hero__slider-panel,
body .ix-hero__slider-panel {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: min(100%, 680px) !important;
}.ix-hero__slider-panel .swiper,
body.luxury-dark-theme .ix-hero__slider-panel .swiper {
  overflow: hidden !important;
  width: 100% !important;
  display: block !important;
  visibility: visible !important;
}

.ix-hero__slider-panel .hero-image,
body.luxury-dark-theme .ix-hero__slider-panel .hero-image {
  display: block !important;
  visibility: visible !important;
  overflow: hidden !important;
  height: 160px !important;
  min-height: 160px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.ix-hero__slider-panel .hero-image img,
body.luxury-dark-theme .ix-hero__slider-panel .hero-image img {
  display: block !important;
  visibility: visible !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}@media (max-width: 1199px) {

  .ix-hero__slider-panel .hero-image,
  body.luxury-dark-theme .ix-hero__slider-panel .hero-image {
    height: 140px !important;
    min-height: 140px !important;
  }
}

@media (max-width: 991px) {

  .ix-hero__right,
  body.luxury-dark-theme .ix-hero__right {
    width: 100% !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }

  .ix-hero__slider-panel,
  body.luxury-dark-theme .ix-hero__slider-panel {
    width: 100% !important;
    max-width: 560px !important;
  }

  .ix-hero__slider-panel .hero-image,
  body.luxury-dark-theme .ix-hero__slider-panel .hero-image {
    height: 130px !important;
    min-height: 130px !important;
  }
}

@media (max-width: 767px) {

  .ix-hero__slider-panel .hero-image,
  body.luxury-dark-theme .ix-hero__slider-panel .hero-image {
    height: 115px !important;
    min-height: 115px !important;
  }
}body.luxury-dark-theme .room-box-item,
body.surat-luxury-page .room-box-item {
  background: linear-gradient(150deg, rgba(18, 18, 22, 0.98), rgba(10, 10, 12, 0.98)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  transition: border-color 0.35s ease, box-shadow 0.35s ease !important;
}

body.luxury-dark-theme .room-box-item:hover,
body.surat-luxury-page .room-box-item:hover {
  border-color: rgba(230, 120, 23, 0.35) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}body.luxury-dark-theme .room-box-item .content-item,
body.surat-luxury-page .room-box-item .content-item {
  background: linear-gradient(150deg, rgba(18, 18, 22, 0.98), rgba(10, 10, 12, 0.98)) !important;
  padding: 20px 22px !important;
}

body.luxury-dark-theme .room-box-item .room-content h6,
body.surat-luxury-page .room-box-item .room-content h6 {
  color: #e67817 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
}

body.luxury-dark-theme .room-box-item .room-content h4 a,
body.surat-luxury-page .room-box-item .room-content h4 a {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
}

body.luxury-dark-theme .room-box-item .room-content .list li,
body.surat-luxury-page .room-box-item .room-content .list li {
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: 'Barlow', sans-serif !important;
}

body.luxury-dark-theme .room-box-item .room-content .list li i,
body.surat-luxury-page .room-box-item .room-content .list li i {
  color: #e67817 !important;
}body.luxury-dark-theme .theme-btn,
body.surat-luxury-page .theme-btn {
  background: #1c1c1c !important;
  background-color: #1c1c1c !important;
  color: #ffffff !important;
  border: 2px solid #e67817 !important;
  border-radius: 8px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  padding: 14px 28px !important;
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

body.luxury-dark-theme .theme-btn::before,
body.surat-luxury-page .theme-btn::before {
  display: none !important;
}body.luxury-dark-theme .theme-btn:hover,
body.surat-luxury-page .theme-btn:hover {
  background: #e67817 !important;
  background-color: #e67817 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.4) !important;
  transform: translateY(-2px) !important;
}body.luxury-dark-theme .header-button .theme-btn,
body.surat-luxury-page .header-button .theme-btn {
  background: linear-gradient(135deg, #e67817, #ffb067) !important;
  border: none !important;
  color: #fff !important;
}

body.luxury-dark-theme .header-button .theme-btn:hover,
body.surat-luxury-page .header-button .theme-btn:hover {
  background: #ffffff !important;
  color: #e67817 !important;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.35) !important;
}body.luxury-dark-theme #our-location,
body.surat-luxury-page #our-location {
  background-image: url('../img/home-1/room/IMG_0195.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative !important;
}body.luxury-dark-theme #our-location::before,
body.surat-luxury-page #our-location::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(5, 5, 8, 0.82) 0%, rgba(5, 5, 8, 0.72) 50%, rgba(5, 5, 8, 0.88) 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

body.luxury-dark-theme #our-location .container,
body.luxury-dark-theme #our-location .swiper,
body.surat-luxury-page #our-location .container,
body.surat-luxury-page #our-location .swiper {
  position: relative !important;
  z-index: 2 !important;
}.lux-loc-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(160deg, rgba(18, 18, 22, 0.96), rgba(10, 10, 12, 0.98));
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
  margin: 0 8px 30px;
}

.lux-loc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 120, 23, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 30px rgba(230, 120, 23, 0.1);
}

.lux-loc-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.lux-loc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.lux-loc-card:hover .lux-loc-img img {
  transform: scale(1.06);
}

.lux-loc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.lux-loc-body {
  padding: 22px 22px 24px;
}

.lux-loc-tag {
  display: inline-block;
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding: 5px 12px;
  border: 1px solid rgba(230, 120, 23, 0.25);
  border-radius: 999px;
  background: rgba(230, 120, 23, 0.08);
}

.lux-loc-name {
  margin: 0 0 10px;
}

.lux-loc-name a {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.lux-loc-card:hover .lux-loc-name a {
  color: #ffb067 !important;
}

.lux-loc-city {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lux-loc-city i {
  color: #e67817;
  font-size: 13px;
}.lux-loc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 10px;
  background: #1c1c1c;
  border: 1px solid rgba(230, 120, 23, 0.5);
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.lux-loc-btn:hover {
  background: #e67817 !important;
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.4);
  transform: translateY(-2px);
}@media (max-width: 991px) {
  .lux-loc-img {
    height: 190px;
  }

  .lux-loc-body {
    padding: 18px 18px 20px;
  }
}

@media (max-width: 767px) {
  .lux-loc-img {
    height: 170px;
  }

  .lux-loc-card {
    margin: 0 6px 24px;
  }
}#our-location {
  background-image: none !important;
  background: linear-gradient(160deg, #080810 0%, #0d0d14 50%, #060608 100%) !important;
  position: relative !important;
  padding: 110px 0 80px !important;
  overflow: hidden !important;
}#our-location::before {
  content: '' !important;
  position: absolute !important;
  top: -80px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 900px !important;
  height: 400px !important;
  background: radial-gradient(ellipse, rgba(230, 120, 23, 0.14) 0%, transparent 65%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}#our-location::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 120px !important;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 8, 0.6)) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

#our-location .container,
#our-location .swiper {
  position: relative !important;
  z-index: 2 !important;
}.lux-loc-card {
  border-radius: 22px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.07) !important;
  background: linear-gradient(160deg, rgba(16, 16, 20, 0.98), rgba(10, 10, 13, 0.99)) !important;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease !important;
  margin: 0 10px 30px !important;
  position: relative !important;
}.lux-loc-card::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, #e67817, transparent) !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  z-index: 3 !important;
}

.lux-loc-card:hover::before {
  opacity: 1 !important;
}

.lux-loc-card:hover {
  transform: translateY(-10px) !important;
  border-color: rgba(230, 120, 23, 0.3) !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(230, 120, 23, 0.08) !important;
}.lux-loc-img {
  position: relative !important;
  overflow: hidden !important;
  height: 230px !important;
}

.lux-loc-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) !important;
  filter: brightness(0.9) saturate(1.1) !important;
}

.lux-loc-card:hover .lux-loc-img img {
  transform: scale(1.07) !important;
  filter: brightness(1.0) saturate(1.15) !important;
}

.lux-loc-img-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.0) 40%, rgba(0, 0, 0, 0.65) 100%) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}.lux-loc-body {
  padding: 24px 24px 26px !important;
  position: relative !important;
}.lux-loc-tag {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: #ffb067 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  margin-bottom: 12px !important;
  padding: 5px 14px !important;
  border: 1px solid rgba(230, 120, 23, 0.22) !important;
  border-radius: 999px !important;
  background: rgba(230, 120, 23, 0.07) !important;
}.lux-loc-name {
  margin: 0 0 10px !important;
}

.lux-loc-name a {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.3rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
  -webkit-text-fill-color: #ffffff !important;
}

.lux-loc-card:hover .lux-loc-name a {
  color: #ffb067 !important;
  -webkit-text-fill-color: #ffb067 !important;
}.lux-loc-city {
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 14px !important;
  margin: 0 0 22px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.lux-loc-city i {
  color: #e67817 !important;
  font-size: 13px !important;
}.lux-loc-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 14px 20px !important;
  border-radius: 10px !important;
  background: transparent !important;
  border: 1px solid rgba(230, 120, 23, 0.5) !important;
  color: #e67817 !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: all 0.35s ease !important;
  position: relative !important;
  overflow: hidden !important;
  -webkit-text-fill-color: #e67817 !important;
}

.lux-loc-btn i {
  color: #e67817 !important;
  transition: transform 0.35s ease, color 0.35s ease !important;
}

.lux-loc-btn:hover {
  background: #e67817 !important;
  border-color: #e67817 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(230, 120, 23, 0.38) !important;
  transform: translateY(-2px) !important;
}

.lux-loc-btn:hover i {
  color: #ffffff !important;
  transform: translateX(4px) !important;
}@media (max-width: 1199px) {
  .lux-loc-img {
    height: 200px !important;
  }
}

@media (max-width: 991px) {
  #our-location {
    padding: 80px 0 60px !important;
  }

  .lux-loc-img {
    height: 185px !important;
  }

  .lux-loc-body {
    padding: 20px 20px 22px !important;
  }
}

@media (max-width: 767px) {
  #our-location {
    padding: 70px 0 50px !important;
  }

  .lux-loc-img {
    height: 170px !important;
  }

  .lux-loc-card {
    margin: 0 6px 20px !important;
  }
}.lux-loc-card::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: -100% !important;
  width: 60% !important;
  height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent) !important;
  transform: skewX(-20deg) !important;
  transition: left 0.7s ease !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.lux-loc-card:hover::after {
  left: 160% !important;
}.lux-loc-card:hover .lux-loc-img img {
  transform: scale(1.07) !important;
  filter: brightness(1.05) saturate(1.2) contrast(1.05) !important;
}.lux-loc-img::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: rgba(230, 120, 23, 0) !important;
  transition: background 0.5s ease !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.lux-loc-card:hover .lux-loc-img::after {
  background: rgba(230, 120, 23, 0.08) !important;
}.lux-loc-card:hover .lux-loc-tag {
  background: rgba(230, 120, 23, 0.18) !important;
  border-color: rgba(230, 120, 23, 0.5) !important;
  color: #ffb067 !important;
  box-shadow: 0 0 14px rgba(230, 120, 23, 0.2) !important;
}.lux-loc-card:hover .lux-loc-city {
  color: rgba(255, 255, 255, 0.75) !important;
}.lux-loc-card:hover .lux-loc-btn {
  border-color: #e67817 !important;
  box-shadow: 0 0 0 0 rgba(230, 120, 23, 0.4) !important;
  animation: lux-btn-pulse 1.5s ease infinite !important;
}

.lux-loc-card:hover .lux-loc-btn:hover {
  animation: none !important;
  background: #e67817 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 10px 28px rgba(230, 120, 23, 0.45) !important;
}

@keyframes lux-btn-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 120, 23, 0.35);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(230, 120, 23, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(230, 120, 23, 0);
  }
}.lux-loc-name a {
  transition: color 0.3s ease, letter-spacing 0.3s ease !important;
}

.lux-loc-card:hover .lux-loc-name a {
  letter-spacing: 0.02em !important;
}body.luxury-dark-theme .ix-hero__overlay,
body.surat-luxury-page .ix-hero__overlay,
.ix-hero__overlay {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.75) 100%) !important;
}body.luxury-dark-theme .video-overlay {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.35) 40%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.75) 100%) !important;
}.lux-svc-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(160deg, rgba(16, 16, 22, 0.98), rgba(10, 10, 14, 0.99));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}.lux-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e67817, #ffb067, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}.lux-svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  transform: skewX(-18deg);
  transition: left 0.75s ease;
  z-index: 2;
  pointer-events: none;
}

.lux-svc-card:hover::before {
  opacity: 1;
}

.lux-svc-card:hover::after {
  left: 160%;
}

.lux-svc-card:hover {
  transform: translateY(-12px);
  border-color: rgba(230, 120, 23, 0.35);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(230, 120, 23, 0.1);
}.lux-svc-img {
  position: relative;
  overflow: hidden;
  height: 260px;
  flex-shrink: 0;
}

.lux-svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: brightness(0.85) saturate(1.1);
}

.lux-svc-card:hover .lux-svc-img img {
  transform: scale(1.08);
  filter: brightness(1.0) saturate(1.2) contrast(1.05);
}.lux-svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.7) 100%);
  transition: background 0.5s ease;
  z-index: 1;
}

.lux-svc-card:hover .lux-svc-overlay {
  background: linear-gradient(180deg, rgba(230, 120, 23, 0.06) 0%, rgba(0, 0, 0, 0.65) 100%);
}.lux-svc-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  z-index: 2;
  transition: color 0.4s ease;
  pointer-events: none;
}

.lux-svc-card:hover .lux-svc-num {
  color: rgba(230, 120, 23, 0.15);
}.lux-svc-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 2;
}.lux-svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(230, 120, 23, 0.1);
  border: 1px solid rgba(230, 120, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.lux-svc-icon-wrap i {
  color: #e67817;
  font-size: 20px;
  transition: color 0.4s ease, transform 0.4s ease;
}

.lux-svc-card:hover .lux-svc-icon-wrap {
  background: #e67817;
  border-color: #e67817;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.4);
  transform: rotate(-5deg) scale(1.08);
}

.lux-svc-card:hover .lux-svc-icon-wrap i {
  color: #ffffff;
  transform: rotate(5deg);
}.lux-svc-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 12px !important;
  transition: color 0.3s ease !important;
  -webkit-text-fill-color: #ffffff !important;
}

.lux-svc-card:hover .lux-svc-title {
  color: #ffb067 !important;
  -webkit-text-fill-color: #ffb067 !important;
}.lux-svc-desc {
  font-family: 'Barlow', sans-serif !important;
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.55) !important;
  line-height: 1.75 !important;
  margin: 0 0 20px !important;
  flex: 1;
  transition: color 0.3s ease !important;
}

.lux-svc-card:hover .lux-svc-desc {
  color: rgba(255, 255, 255, 0.75) !important;
}.lux-svc-line {
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 120, 23, 0.3), rgba(255, 255, 255, 0.05), transparent);
  margin-bottom: 20px;
  transition: background 0.4s ease;
}

.lux-svc-card:hover .lux-svc-line {
  background: linear-gradient(90deg, #e67817, rgba(255, 176, 103, 0.3), transparent);
}.lux-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e67817 !important;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none !important;
  -webkit-text-fill-color: #e67817 !important;
  transition: gap 0.3s ease, color 0.3s ease;
}

.lux-svc-link i {
  font-size: 11px;
  transition: transform 0.35s ease;
}

.lux-svc-card:hover .lux-svc-link {
  color: #ffb067 !important;
  -webkit-text-fill-color: #ffb067 !important;
  gap: 14px;
}

.lux-svc-card:hover .lux-svc-link i {
  transform: translateX(5px);
}@media (max-width: 1199px) {
  .lux-svc-img {
    height: 230px;
  }
}

@media (max-width: 991px) {
  #our-services {
    padding: 80px 0;
  }

  .lux-svc-img {
    height: 210px;
  }

  .lux-svc-body {
    padding: 22px 22px 24px;
  }
}

@media (max-width: 767px) {
  #our-services {
    padding: 70px 0;
  }

  .lux-svc-img {
    height: 200px;
  }

  .lux-svc-card {
    border-radius: 20px;
  }

  .lux-svc-body {
    padding: 20px 20px 22px;
  }

  .lux-svc-card:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 575px) {
  .lux-svc-img {
    height: 185px;
  }
}.lux-services-section {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(160deg, #08080c 0%, #0f0f14 50%, #060608 100%);
  overflow: hidden;
}

.lux-services-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.lux-services-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.06) 0%, transparent 65%);
  pointer-events: none;
}.lux-svc-header {
  text-align: center;
  margin-bottom: 56px;
}

.lux-svc-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.lux-svc-line-left,
.lux-svc-line-right {
  display: block;
  width: 40px;
  height: 1px;
}

.lux-svc-line-left {
  background: linear-gradient(90deg, transparent, #e67817);
}

.lux-svc-line-right {
  background: linear-gradient(90deg, #e67817, transparent);
}

.lux-svc-label {
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.lux-svc-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.08;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.lux-gold-text {
  background: linear-gradient(90deg, #e67817, #ffb067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lux-svc-subtext {
  color: rgba(255, 255, 255, 0.58);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}.lux-svc-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}.lux-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e67817, #ffb067, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 4;
}.lux-svc-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: skewX(-18deg);
  transition: left 0.75s ease;
  z-index: 3;
  pointer-events: none;
}

.lux-svc-card:hover {
  transform: translateY(-12px);
  border-color: rgba(230, 120, 23, 0.4);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.65), 0 0 40px rgba(230, 120, 23, 0.12);
}

.lux-svc-card:hover::before {
  opacity: 1;
}

.lux-svc-card:hover::after {
  left: 160%;
}.lux-svc-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: brightness(0.75) saturate(1.1);
  z-index: 0;
}

.lux-svc-card:hover .lux-svc-bg-img {
  transform: scale(1.07);
  filter: brightness(0.85) saturate(1.2) contrast(1.05);
}.lux-svc-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(0, 0, 0, 0.3) 35%,
      rgba(0, 0, 0, 0.85) 70%,
      rgba(0, 0, 0, 0.97) 100%);
  z-index: 1;
  transition: background 0.5s ease;
}

.lux-svc-card:hover .lux-svc-gradient {
  background: linear-gradient(180deg,
      rgba(230, 120, 23, 0.05) 0%,
      rgba(0, 0, 0, 0.25) 30%,
      rgba(0, 0, 0, 0.82) 65%,
      rgba(0, 0, 0, 0.97) 100%);
}.lux-svc-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 30px;
  z-index: 2;
}.lux-svc-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.22em;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.lux-svc-card:hover .lux-svc-num {
  color: #e67817;
}.lux-svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(230, 120, 23, 0.12);
  border: 1px solid rgba(230, 120, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.lux-svc-icon i {
  color: #e67817;
  font-size: 18px;
  transition: color 0.4s ease, transform 0.4s ease;
}

.lux-svc-card:hover .lux-svc-icon {
  background: #e67817;
  border-color: #e67817;
  box-shadow: 0 6px 20px rgba(230, 120, 23, 0.45);
  transform: rotate(-5deg) scale(1.1);
}

.lux-svc-card:hover .lux-svc-icon i {
  color: #ffffff;
  transform: rotate(5deg);
}.lux-svc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  transition: color 0.3s ease;
  -webkit-text-fill-color: #ffffff;
}

.lux-svc-card:hover .lux-svc-title {
  color: #ffb067;
  -webkit-text-fill-color: #ffb067;
}.lux-svc-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 16px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.45s ease, opacity 0.4s ease 0.05s, transform 0.4s ease 0.05s;
}

.lux-svc-card:hover .lux-svc-desc {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}.lux-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-text-fill-color: #e67817;
  transition: gap 0.3s ease, color 0.3s ease;
}

.lux-svc-link i {
  transition: transform 0.35s ease;
}

.lux-svc-card:hover .lux-svc-link {
  gap: 14px;
  color: #ffb067;
  -webkit-text-fill-color: #ffb067;
}

.lux-svc-card:hover .lux-svc-link i {
  transform: translateX(4px);
}@media (max-width: 991px) {
  .lux-services-section {
    padding: 80px 0;
  }

  .lux-svc-card {
    height: 420px;
  }

  .lux-svc-desc {
    max-height: 80px;
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .lux-services-section {
    padding: 70px 0;
  }

  .lux-svc-card {
    height: 380px;
    border-radius: 18px;
  }

  .lux-svc-card:hover {
    transform: translateY(-6px);
  }

  .lux-svc-content {
    padding: 22px 22px 24px;
  }
}

@media (max-width: 575px) {
  .lux-svc-card {
    height: 340px;
  }
}.lux-services-section {
  padding: 110px 0 100px;
  background: #080810;
  position: relative;
  overflow: hidden;
}.lux-svc-header {
  text-align: center;
  margin-bottom: 60px;
}

.lux-svc-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.lux-svc-line-left {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e67817);
}

.lux-svc-line-right {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, #e67817, transparent);
}

.lux-svc-label {
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.lux-svc-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.lux-gold-text {
  background: linear-gradient(90deg, #e67817, #ffb067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lux-svc-subtext {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  max-width: 580px;
  margin: 0 auto;
}.lux-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}.lux-svc-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.lux-svc-card:hover {
  transform: translateY(-14px);
  border-color: rgba(230, 120, 23, 0.45);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(230, 120, 23, 0.12);
}.lux-svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e67817, #ffb067, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 5;
}

.lux-svc-card:hover::before {
  opacity: 1;
}.lux-svc-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lux-svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: brightness(0.7) saturate(1.1);
}

.lux-svc-card:hover .lux-svc-img-wrap img {
  transform: scale(1.08);
  filter: brightness(0.85) saturate(1.25);
}.lux-svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 5, 10, 0.15) 0%,
      rgba(5, 5, 10, 0.4) 40%,
      rgba(5, 5, 10, 0.92) 75%,
      rgba(5, 5, 10, 0.99) 100%);
  transition: background 0.5s ease;
}

.lux-svc-card:hover .lux-svc-img-overlay {
  background: linear-gradient(180deg,
      rgba(230, 120, 23, 0.06) 0%,
      rgba(5, 5, 10, 0.35) 40%,
      rgba(5, 5, 10, 0.90) 72%,
      rgba(5, 5, 10, 0.99) 100%);
}.lux-svc-badge {
  position: absolute;
  top: 22px;
  left: 26px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.18em;
  z-index: 2;
  transition: color 0.4s ease;
}

.lux-svc-card:hover .lux-svc-badge {
  color: #e67817;
}.lux-svc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 30px 32px;
  z-index: 3;
}

.lux-svc-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
  -webkit-text-fill-color: #ffffff;
}

.lux-svc-card:hover .lux-svc-body h3 {
  color: #ffb067;
  -webkit-text-fill-color: #ffb067;
}

.lux-svc-body p {
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.75;
  margin: 0 0 20px;
  transition: color 0.3s ease;
}

.lux-svc-card:hover .lux-svc-body p {
  color: rgba(255, 255, 255, 0.82);
}.lux-svc-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(230, 120, 23, 0.5);
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-text-fill-color: #e67817;
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, gap 0.3s ease;
}

.lux-svc-cta i {
  transition: transform 0.35s ease;
}

.lux-svc-cta:hover {
  background: #e67817;
  border-color: #e67817;
  color: #fff;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.4);
  gap: 16px;
}

.lux-svc-cta:hover i {
  transform: translateX(4px);
}@media (max-width: 991px) {
  .lux-svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .lux-svc-card {
    height: 460px;
  }

  .lux-services-section {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .lux-svc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lux-svc-card {
    height: 400px;
    border-radius: 20px;
  }

  .lux-svc-card:hover {
    transform: translateY(-6px);
  }

  .lux-svc-body {
    padding: 0 22px 26px;
  }

  .lux-services-section {
    padding: 70px 0;
  }
}.lux-svc-body {
  padding: 0 30px 36px;
}.lux-svc-body p {
  margin-bottom: 0;
}.lux-svc-card .lux-svc-gold-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e67817, #ffb067, #e67817);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 5;
}

.lux-svc-card:hover .lux-svc-gold-bar {
  transform: scaleX(1);
}.lux-svc-card:hover .lux-svc-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(230, 120, 23, 0.18);
  z-index: 1;
  pointer-events: none;
}.lux-svc-body h3 {
  position: relative;
  display: inline-block;
}

.lux-svc-body h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #e67817, #ffb067);
  transition: width 0.45s ease;
}

.lux-svc-card:hover .lux-svc-body h3::after {
  width: 100%;
}.lux-svc-body p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.5s ease, opacity 0.4s ease 0.08s, transform 0.4s ease 0.08s;
}

.lux-svc-card:hover .lux-svc-body p {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
}@media (max-width: 991px) {
  .lux-svc-body p {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
  }

  .lux-svc-body {
    padding: 0 22px 28px;
  }
}.lux-services-section {
  position: relative;
  padding: 120px 0 110px;
  background: #06060a;
  overflow: hidden;
}

.lux-svc-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.lux-svc-bg-glow--left {
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.09) 0%, transparent 65%);
}

.lux-svc-bg-glow--right {
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.07) 0%, transparent 65%);
}.lux-svc-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

.lux-svc-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.lux-svc-line-left {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e67817);
}

.lux-svc-line-right {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, #e67817, transparent);
}

.lux-svc-label {
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

.lux-svc-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.lux-gold-text {
  background: linear-gradient(90deg, #e67817 0%, #ffb067 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lux-svc-subtext {
  color: rgba(255, 255, 255, 0.52);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  max-width: 560px;
  margin: 0 auto;
}.lux-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}.lux-svc-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #0e0e14;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  cursor: pointer;
}

.lux-svc-card:hover {
  transform: translateY(-16px);
  border-color: rgba(230, 120, 23, 0.5);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(230, 120, 23, 0.15),
    0 0 60px rgba(230, 120, 23, 0.1);
}.lux-svc-img-wrap {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.lux-svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: brightness(0.72) saturate(1.1);
}

.lux-svc-card:hover .lux-svc-img-wrap img {
  transform: scale(1.1);
  filter: brightness(0.9) saturate(1.3) contrast(1.06);
}.lux-svc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(6, 6, 10, 0.1) 0%,
      rgba(6, 6, 10, 0.5) 60%,
      rgba(6, 6, 10, 0.95) 100%);
  transition: background 0.5s ease;
  z-index: 1;
}

.lux-svc-card:hover .lux-svc-img-overlay {
  background: linear-gradient(180deg,
      rgba(230, 120, 23, 0.08) 0%,
      rgba(6, 6, 10, 0.45) 55%,
      rgba(6, 6, 10, 0.95) 100%);
}.lux-svc-gold-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e67817, #ffb067, transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 3;
}

.lux-svc-card:hover .lux-svc-gold-bar {
  transform: scaleX(1);
}.lux-svc-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.2em;
  z-index: 2;
  transition: color 0.4s ease;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}

.lux-svc-card:hover .lux-svc-badge {
  color: #e67817;
  border-color: rgba(230, 120, 23, 0.4);
  background: rgba(230, 120, 23, 0.1);
}.lux-svc-body {
  padding: 26px 28px 30px;
  position: relative;
  background: #0e0e14;
  transition: background 0.4s ease;
}.lux-svc-body::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: linear-gradient(180deg, transparent, #e67817, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 2px;
}

.lux-svc-card:hover .lux-svc-body::before {
  opacity: 1;
}

.lux-svc-card:hover .lux-svc-body {
  background: linear-gradient(160deg, rgba(20, 16, 10, 0.98), rgba(14, 14, 20, 0.99));
}

.lux-svc-body h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  transition: color 0.35s ease, letter-spacing 0.35s ease;
  -webkit-text-fill-color: #ffffff;
  position: relative;
  display: inline-block;
}.lux-svc-body h3::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, #e67817, #ffb067);
  transition: width 0.45s ease;
}

.lux-svc-card:hover .lux-svc-body h3 {
  color: #ffb067;
  -webkit-text-fill-color: #ffb067;
  letter-spacing: 0.01em;
}

.lux-svc-card:hover .lux-svc-body h3::after {
  width: 100%;
}

.lux-svc-body p {
  font-family: 'Barlow', sans-serif;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.78;
  margin: 0;
  transition: color 0.35s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.5s ease, opacity 0.4s ease 0.06s, transform 0.4s ease 0.06s, color 0.3s ease;
}

.lux-svc-card:hover .lux-svc-body p {
  max-height: 100px;
  opacity: 1;
  transform: translateY(0);
  color: rgba(255, 255, 255, 0.72);
}@media (max-width: 1199px) {
  .lux-svc-img-wrap {
    height: 260px;
  }
}

@media (max-width: 991px) {
  .lux-services-section {
    padding: 90px 0 80px;
  }

  .lux-svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .lux-svc-img-wrap {
    height: 240px;
  }

  .lux-svc-body p {
    max-height: 100px;
    opacity: 1;
    transform: translateY(0);
    color: rgba(255, 255, 255, 0.6);
  }
}

@media (max-width: 767px) {
  .lux-services-section {
    padding: 70px 0 60px;
  }

  .lux-svc-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .lux-svc-img-wrap {
    height: 220px;
  }

  .lux-svc-card {
    border-radius: 18px;
  }

  .lux-svc-card:hover {
    transform: translateY(-8px);
  }

  .lux-svc-body {
    padding: 22px 22px 26px;
  }
}.lux-svc-body p {
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  transform: none !important;
  transition: color 0.35s ease !important;
  color: rgba(255, 255, 255, 0.58) !important;
  font-family: 'Barlow', sans-serif !important;
  font-size: 14.5px !important;
  line-height: 1.78 !important;
  margin: 0 !important;
}

.lux-svc-card:hover .lux-svc-body p {
  color: rgba(255, 255, 255, 0.78) !important;
}

.lux-svc-body::before {
  display: none !important;
}

.lux-svc-body h3 {
  display: block !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin: 0 0 12px !important;
  letter-spacing: -0.01em !important;
  transition: color 0.35s ease !important;
}

.lux-svc-body h3::after {
  display: none !important;
}

.lux-svc-card:hover .lux-svc-body h3 {
  color: #ffb067 !important;
  -webkit-text-fill-color: #ffb067 !important;
  letter-spacing: -0.01em !important;
}

.lux-svc-body {
  padding: 26px 28px 30px !important;
  background: #0e0e14 !important;
  transition: background 0.4s ease !important;
}

.lux-svc-card:hover .lux-svc-body {
  background: linear-gradient(160deg, rgba(20, 14, 8, 0.98), rgba(14, 14, 20, 0.99)) !important;
}.lux-svc-gold-bar {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, #e67817, #ffb067, transparent) !important;
  transform: scaleX(0) !important;
  transform-origin: center !important;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) !important;
  z-index: 3 !important;
}

.lux-svc-card:hover .lux-svc-gold-bar {
  transform: scaleX(1) !important;
}.lux-svc-badge {
  position: absolute !important;
  top: 18px !important;
  right: 20px !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.3) !important;
  letter-spacing: 0.2em !important;
  z-index: 2 !important;
  padding: 5px 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 999px !important;
  background: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(6px) !important;
  transition: all 0.4s ease !important;
}

.lux-svc-card:hover .lux-svc-badge {
  color: #e67817 !important;
  border-color: rgba(230, 120, 23, 0.4) !important;
  background: rgba(230, 120, 23, 0.1) !important;
}@media (max-width: 767px) {
  .lux-svc-body {
    padding: 22px 22px 26px !important;
  }
}.lux-svc-img-wrap {
  height: 320px !important;
}.lux-svc-badge {
  position: absolute !important;
  top: 20px !important;
  left: 20px !important;
  right: auto !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3em !important;
  color: #ffb067 !important;
  padding: 6px 16px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(230, 120, 23, 0.35) !important;
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  z-index: 4 !important;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease !important;
}

.lux-svc-card:hover .lux-svc-badge {
  background: rgba(230, 120, 23, 0.2) !important;
  border-color: #e67817 !important;
  color: #ffffff !important;
  box-shadow: 0 0 16px rgba(230, 120, 23, 0.35) !important;
}.lux-svc-body {
  padding: 28px 28px 32px !important;
  background: linear-gradient(160deg, #111118, #0c0c12) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  position: relative !important;
  transition: background 0.4s ease !important;
}

.lux-svc-card:hover .lux-svc-body {
  background: linear-gradient(160deg, #16100a, #0e0e16) !important;
  border-top-color: rgba(230, 120, 23, 0.2) !important;
}.lux-svc-body h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: color 0.35s ease !important;
}.lux-svc-body h3::before {
  content: '' !important;
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #e67817 !important;
  flex-shrink: 0 !important;
  transition: transform 0.35s ease, box-shadow 0.35s ease !important;
}

.lux-svc-body h3::after {
  display: none !important;
}

.lux-svc-card:hover .lux-svc-body h3 {
  color: #ffb067 !important;
  -webkit-text-fill-color: #ffb067 !important;
}

.lux-svc-card:hover .lux-svc-body h3::before {
  transform: scale(1.5) !important;
  box-shadow: 0 0 8px rgba(230, 120, 23, 0.7) !important;
}.lux-svc-body p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 14.5px !important;
  color: rgba(255, 255, 255, 0.52) !important;
  line-height: 1.8 !important;
  margin: 0 !important;
  padding-left: 16px !important;
  border-left: 1px solid rgba(230, 120, 23, 0.2) !important;
  transition: color 0.35s ease, border-color 0.35s ease !important;
  max-height: none !important;
  overflow: visible !important;
  opacity: 1 !important;
  transform: none !important;
}

.lux-svc-card:hover .lux-svc-body p {
  color: rgba(255, 255, 255, 0.78) !important;
  border-left-color: rgba(230, 120, 23, 0.6) !important;
}

@media (max-width: 1199px) {
  .lux-svc-img-wrap {
    height: 280px !important;
  }
}

@media (max-width: 991px) {
  .lux-svc-img-wrap {
    height: 250px !important;
  }

  .lux-svc-body {
    padding: 22px 22px 26px !important;
  }

  .lux-svc-body p {
    padding-left: 14px !important;
  }
}

@media (max-width: 767px) {
  .lux-svc-img-wrap {
    height: 220px !important;
  }
}.lux-svc-body p {
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: translateY(6px) !important;
  margin-top: 0 !important;
  padding-left: 16px !important;
  border-left: 1px solid rgba(230, 120, 23, 0.2) !important;
  transition: max-height 0.45s ease, opacity 0.38s ease 0.06s, transform 0.38s ease 0.06s, color 0.3s ease, border-color 0.3s ease !important;
}

.lux-svc-card:hover .lux-svc-body p {
  max-height: 120px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  color: rgba(255, 255, 255, 0.78) !important;
  border-left-color: rgba(230, 120, 23, 0.6) !important;
  margin-top: 12px !important;
}@media (max-width: 991px) {
  .lux-svc-body p {
    max-height: 120px !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    margin-top: 10px !important;
    color: rgba(255, 255, 255, 0.6) !important;
  }
}.lux-svc-card {
  display: flex !important;
  flex-direction: column !important;
  height: auto !important;
}

.lux-svc-img-wrap {
  flex: 1 1 auto !important;
  height: auto !important;
  min-height: 200px !important;
}

.lux-svc-img-wrap img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.lux-svc-img-wrap {
  position: relative !important;
}

.lux-svc-body {
  flex: 0 0 auto !important;
}

@media (max-width: 767px) {
  .lux-svc-img-wrap {
    min-height: 180px !important;
  }
}.lux-svc-grid {
  align-items: start !important;
}

.lux-svc-card {
  display: block !important;
  height: 500px !important;
  min-height: 500px !important;
  flex-direction: unset !important;
  will-change: transform, box-shadow !important;
  transform: translateZ(0) !important;
}

.lux-svc-card:hover {
  transform: translateY(-10px) translateZ(0) !important;
  border-color: rgba(230, 120, 23, 0.5) !important;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(230, 120, 23, 0.12),
    0 0 50px rgba(230, 120, 23, 0.1) !important;
}

.lux-svc-img-wrap {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 120px !important;
  height: auto !important;
  min-height: unset !important;
  flex: unset !important;
}

.lux-svc-img-wrap img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.lux-svc-body {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 120px !important;
  flex: unset !important;
  padding: 20px 26px 22px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  overflow: hidden !important;
}.lux-svc-card:hover .lux-svc-body {
  height: 160px !important;
  bottom: 0 !important;
}

.lux-svc-body h3 {
  margin: 0 0 0 !important;
  font-size: 1.3rem !important;
}

.lux-svc-body p {
  max-height: 0 !important;
  opacity: 0 !important;
  transform: translateY(6px) !important;
  margin-top: 0 !important;
  transition: max-height 0.4s ease, opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s !important;
}

.lux-svc-card:hover .lux-svc-body p {
  max-height: 80px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  margin-top: 8px !important;
}

@media (max-width: 1199px) {
  .lux-svc-card {
    height: 460px !important;
    min-height: 460px !important;
  }

  .lux-svc-body {
    height: 110px !important;
  }

  .lux-svc-card:hover .lux-svc-body {
    height: 150px !important;
  }
}

@media (max-width: 991px) {
  .lux-svc-card {
    height: 420px !important;
    min-height: 420px !important;
  }

  .lux-svc-body {
    height: auto !important;
    position: relative !important;
    bottom: auto !important;
  }

  .lux-svc-img-wrap {
    position: relative !important;
    bottom: auto !important;
    height: 260px !important;
  }

  .lux-svc-body p {
    max-height: 80px !important;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 8px !important;
  }

  .lux-svc-card:hover .lux-svc-body {
    height: auto !important;
  }

  .lux-svc-card:hover {
    transform: translateY(-6px) translateZ(0) !important;
  }
}

@media (max-width: 767px) {
  .lux-svc-card {
    height: auto !important;
    min-height: unset !important;
  }

  .lux-svc-img-wrap {
    height: 220px !important;
  }
}.lux-svc-card {
  height: 500px !important;
  min-height: 500px !important;
  position: relative !important;
  display: block !important;
  overflow: hidden !important;
}.lux-svc-img-wrap {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  bottom: 0 !important;
  flex: unset !important;
  min-height: unset !important;
}

.lux-svc-img-wrap img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  filter: brightness(0.75) saturate(1.1) !important;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease !important;
}

.lux-svc-card:hover .lux-svc-img-wrap img {
  transform: scale(1.07) !important;
  filter: brightness(0.88) saturate(1.25) !important;
}.lux-svc-img-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg,
      rgba(6, 6, 10, 0.05) 0%,
      rgba(6, 6, 10, 0.15) 40%,
      rgba(6, 6, 10, 0.82) 72%,
      rgba(6, 6, 10, 0.97) 100%) !important;
  z-index: 1 !important;
  transition: background 0.5s ease !important;
}

.lux-svc-card:hover .lux-svc-img-overlay {
  background: linear-gradient(180deg,
      rgba(230, 120, 23, 0.06) 0%,
      rgba(6, 6, 10, 0.12) 38%,
      rgba(6, 6, 10, 0.78) 68%,
      rgba(6, 6, 10, 0.97) 100%) !important;
}.lux-svc-body {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: auto !important;
  background: transparent !important;
  padding: 0 28px 28px !important;
  z-index: 3 !important;
  display: block !important;
  flex: unset !important;
  border-top: none !important;
}

.lux-svc-card:hover .lux-svc-body {
  background: transparent !important;
  border-top: none !important;
}

.lux-svc-body h3 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  margin: 0 0 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: color 0.35s ease !important;
}

.lux-svc-card:hover .lux-svc-body h3 {
  color: #ffb067 !important;
  -webkit-text-fill-color: #ffb067 !important;
}.lux-svc-body p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 14px !important;
  color: rgba(255, 255, 255, 0.72) !important;
  line-height: 1.75 !important;
  margin: 0 !important;
  padding-left: 0 !important;
  border-left: none !important;
  max-height: 0 !important;
  overflow: hidden !important;
  opacity: 0 !important;
  transform: translateY(8px) !important;
  transition: max-height 0.45s ease, opacity 0.38s ease 0.06s, transform 0.38s ease 0.06s !important;
}

.lux-svc-card:hover .lux-svc-body p {
  max-height: 80px !important;
  opacity: 1 !important;
  transform: translateY(0) !important;
  margin-top: 10px !important;
}@media (max-width: 1199px) {
  .lux-svc-card {
    height: 460px !important;
    min-height: 460px !important;
  }
}

@media (max-width: 991px) {
  .lux-svc-card {
    height: 420px !important;
    min-height: 420px !important;
  }

  .lux-svc-body p {
    max-height: 80px !important;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 10px !important;
  }
}

@media (max-width: 767px) {
  .lux-svc-card {
    height: 360px !important;
    min-height: 360px !important;
  }

  .lux-svc-body {
    padding: 0 20px 22px !important;
  }
}.lux-svc-body h3::before {
  display: none !important;
  content: none !important;
}

.lux-svc-body h3 {
  gap: 0 !important;
}.lux-svc-card:hover {
  transform: none !important;
  border-color: rgba(230, 120, 23, 0.55) !important;
  box-shadow:
    0 0 0 1px rgba(230, 120, 23, 0.2),
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(230, 120, 23, 0.12) !important;
}.lux-svc-img-wrap img {
  filter: brightness(0.88) saturate(1.15) !important;
}.lux-svc-img-overlay {
  background: linear-gradient(180deg,
      rgba(6, 6, 10, 0.0) 0%,
      rgba(6, 6, 10, 0.08) 35%,
      rgba(6, 6, 10, 0.72) 68%,
      rgba(6, 6, 10, 0.96) 100%) !important;
}.lux-svc-card {
  border: 1px solid rgba(230, 120, 23, 0.18) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}.lux-svc-body h3 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8) !important;
}.lux-svc-badge {
  color: #ffb067 !important;
  border-color: rgba(230, 120, 23, 0.4) !important;
  background: rgba(0, 0, 0, 0.5) !important;
}.lux-svc-gold-bar {
  transform: scaleX(0.3) !important;
  opacity: 0.4 !important;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease !important;
}

.lux-svc-card:hover .lux-svc-gold-bar {
  transform: scaleX(1) !important;
  opacity: 1 !important;
}.lux-gallery-section {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(160deg, #06060a 0%, #0c0c12 50%, #080810 100%);
  overflow: hidden;
}

.lux-gallery-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(230, 120, 23, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}.lux-gallery-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.lux-gallery-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.lux-gallery-line {
  display: block;
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e67817, transparent);
}

.lux-gallery-label {
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

.lux-gallery-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -0.025em;
  line-height: 1.06;
}

.lux-gallery-subtext {
  color: rgba(255, 255, 255, 0.52);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto;
}.lux-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  position: relative;
  z-index: 2;
}.lux-gallery-item--large {
  grid-row: span 2;
}.lux-gallery-item--wide {
  grid-column: span 2;
}.lux-gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.lux-gallery-item:hover {
  border-color: rgba(230, 120, 23, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(230, 120, 23, 0.12);
  transform: scale(1.02);
  z-index: 3;
}

.lux-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: brightness(0.82) saturate(1.1);
}

.lux-gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.0) saturate(1.25);
}.lux-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 10, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
  z-index: 2;
}

.lux-gallery-item:hover .lux-gallery-overlay {
  background: rgba(6, 6, 10, 0.35);
}.lux-gallery-zoom {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(230, 120, 23, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.5);
}

.lux-gallery-zoom i {
  color: #fff;
  font-size: 16px;
}

.lux-gallery-item:hover .lux-gallery-zoom {
  opacity: 1;
  transform: scale(1);
}.lux-gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #e67817, transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.lux-gallery-item:hover::before {
  opacity: 1;
}@media (max-width: 1199px) {
  .lux-gallery-grid {
    grid-template-rows: 240px 240px;
    gap: 14px;
  }
}

@media (max-width: 991px) {
  .lux-gallery-section {
    padding: 80px 0;
  }

  .lux-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: 12px;
  }

  .lux-gallery-item--large {
    grid-row: span 1;
  }

  .lux-gallery-item--wide {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .lux-gallery-section {
    padding: 70px 0;
  }

  .lux-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 10px;
  }

  .lux-gallery-item--wide {
    grid-column: span 2;
  }

  .lux-gallery-item {
    border-radius: 14px;
  }

  .lux-gallery-item:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .lux-gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .lux-gallery-item {
    height: 200px;
  }

  .lux-gallery-item--large,
  .lux-gallery-item--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}.lux-gallery-section {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(160deg, #06060a 0%, #0c0c12 50%, #080810 100%);
  overflow: hidden;
}

.lux-gallery-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(230, 120, 23, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}.lux-gallery-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}.lux-gallery-label {
  display: block;
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lux-gallery-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.lux-gallery-subtext {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}.lux-gallery-thumbs {
  margin-bottom: 28px;
}

.lux-thumb-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.lux-thumb-item:hover {
  border-color: rgba(230, 120, 23, 0.5);
  box-shadow: 0 6px 20px rgba(230, 120, 23, 0.2);
}

.lux-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.75) saturate(1.1);
}

.lux-thumb-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.0) saturate(1.2);
}

.lux-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 10, 0);
  transition: background 0.35s ease;
}

.lux-thumb-item:hover .lux-thumb-overlay {
  background: rgba(230, 120, 23, 0.08);
}.lux-gallery-nav {
  display: flex;
  gap: 12px;
}

.lux-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(230, 120, 23, 0.35);
  background: rgba(230, 120, 23, 0.08);
  color: #e67817;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  font-size: 14px;
}

.lux-nav-btn:hover {
  background: #e67817;
  border-color: #e67817;
  color: #fff;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.4);
}.lux-gallery-right {
  position: relative;
}

.lux-main-slider {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 120, 23, 0.08);
}

.lux-main-img {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.lux-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: brightness(0.88) saturate(1.1);
}

.lux-main-slider:hover .lux-main-img img {
  transform: scale(1.04);
  filter: brightness(1.0) saturate(1.2);
}

.lux-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 6, 10, 0) 50%, rgba(6, 6, 10, 0.5) 100%);
  pointer-events: none;
}.lux-main-slider:hover {
  border-color: rgba(230, 120, 23, 0.4);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(230, 120, 23, 0.12);
}@media (max-width: 1199px) {
  .lux-gallery-inner {
    gap: 40px;
  }

  .lux-main-img {
    height: 420px;
  }
}

@media (max-width: 991px) {
  .lux-gallery-section {
    padding: 80px 0;
  }

  .lux-gallery-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lux-gallery-left {
    order: 1;
  }

  .lux-gallery-right {
    order: 2;
  }

  .lux-main-img {
    height: 380px;
  }

  .lux-thumb-item {
    height: 80px;
  }
}

@media (max-width: 767px) {
  .lux-gallery-section {
    padding: 70px 0;
  }

  .lux-main-img {
    height: 300px;
  }

  .lux-main-slider {
    border-radius: 18px;
  }

  .lux-thumb-item {
    height: 70px;
    border-radius: 10px;
  }

  .lux-gallery-heading {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }
}.lux-gallery-section {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(160deg, #06060a 0%, #0d0d14 50%, #080810 100%);
  overflow: hidden;
}

.lux-gallery-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(230, 120, 23, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.lux-gallery-wrapper {
  position: relative;
  z-index: 2;
}.lux-gallery-content {
  padding-right: 20px;
}

.lux-gallery-label {
  display: block;
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.lux-gallery-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.lux-gallery-subtext {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

.lux-gallery-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 120, 23, 0.4), rgba(255, 255, 255, 0.06), transparent);
  margin: 28px 0;
}.lux-thumb-wrap {
  margin-bottom: 24px;
}

.lux-thumb-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 95px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.lux-thumb-item:hover {
  border-color: rgba(230, 120, 23, 0.55);
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.2);
  transform: translateY(-3px);
}

.lux-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.75) saturate(1.1);
}

.lux-thumb-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.0) saturate(1.25);
}.lux-thumb-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.lux-thumb-item:hover .lux-thumb-shine {
  transform: translateX(100%);
}.lux-gallery-nav {
  display: flex;
  gap: 12px;
}

.lux-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(230, 120, 23, 0.35);
  background: rgba(230, 120, 23, 0.08);
  color: #e67817;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.35s ease;
}

.lux-nav-btn:hover {
  background: #e67817;
  border-color: #e67817;
  color: #fff;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.4);
  transform: scale(1.08);
}.lux-main-slider-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 120, 23, 0.06);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.lux-main-slider-wrap:hover {
  border-color: rgba(230, 120, 23, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(230, 120, 23, 0.1);
}

.lux-main-img {
  height: 480px;
  overflow: hidden;
}

.lux-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
  filter: brightness(0.88) saturate(1.1);
}

.lux-main-slider-wrap:hover .lux-main-img img {
  transform: scale(1.04);
  filter: brightness(1.0) saturate(1.2);
}.lux-main-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 3;
  pointer-events: none;
}

.lux-main-corner--tl {
  top: 16px;
  left: 16px;
  border-top: 2px solid rgba(230, 120, 23, 0.6);
  border-left: 2px solid rgba(230, 120, 23, 0.6);
  border-radius: 4px 0 0 0;
}

.lux-main-corner--br {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid rgba(230, 120, 23, 0.6);
  border-right: 2px solid rgba(230, 120, 23, 0.6);
  border-radius: 0 0 4px 0;
}@media (max-width: 1199px) {
  .lux-main-img {
    height: 420px;
  }

  .lux-gallery-content {
    padding-right: 10px;
  }
}

@media (max-width: 991px) {
  .lux-gallery-section {
    padding: 80px 0;
  }

  .lux-gallery-content {
    padding-right: 0;
    margin-bottom: 10px;
  }

  .lux-main-img {
    height: 380px;
  }

  .lux-thumb-item {
    height: 80px;
  }
}

@media (max-width: 767px) {
  .lux-gallery-section {
    padding: 70px 0;
  }

  .lux-main-img {
    height: 300px;
  }

  .lux-main-slider-wrap {
    border-radius: 18px;
  }

  .lux-thumb-item {
    height: 70px;
    border-radius: 10px;
  }
}#our-gallery .dining-image,
.lux-gallery-section .dining-image {
  height: 95px !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#our-gallery .dining-image img,
.lux-gallery-section .dining-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  filter: brightness(0.78) saturate(1.1) !important;
  transition: transform 0.6s ease, filter 0.4s ease !important;
  min-height: unset !important;
}

#our-gallery .dining-image:hover img,
.lux-gallery-section .dining-image:hover img {
  transform: scale(1.08) !important;
  filter: brightness(1.0) saturate(1.25) !important;
}#our-gallery .hotel-image,
.lux-gallery-section .hotel-image,
.lux-main-img {
  height: 480px !important;
  overflow: hidden !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

#our-gallery .hotel-image img,
.lux-gallery-section .hotel-image img,
.lux-main-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  filter: brightness(0.88) saturate(1.1) !important;
  min-height: unset !important;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease !important;
}#our-gallery .dining-slider,
#our-gallery .hotel-slider,
.lux-gallery-section .dining-slider,
.lux-gallery-section .hotel-slider {
  overflow: hidden !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}.lux-thumb-item .dining-image {
  height: 100% !important;
  border-radius: 0 !important;
}

@media (max-width: 991px) {

  #our-gallery .hotel-image,
  .lux-main-img {
    height: 380px !important;
  }

  #our-gallery .dining-image,
  .lux-gallery-section .dining-image {
    height: 80px !important;
  }
}

@media (max-width: 767px) {

  #our-gallery .hotel-image,
  .lux-main-img {
    height: 300px !important;
  }

  #our-gallery .dining-image,
  .lux-gallery-section .dining-image {
    height: 70px !important;
  }
}.lux-gallery-section .hotel-image img,
.lux-gallery-section .lux-main-img img,
#our-gallery .hotel-image img,
#our-gallery .lux-main-img img {
  min-height: 0 !important;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  filter: brightness(0.9) saturate(1.1) !important;
}.lux-gallery-section .hotel-image,
.lux-gallery-section .lux-main-img,
#our-gallery .hotel-image,
#our-gallery .lux-main-img {
  height: 440px !important;
  min-height: 0 !important;
  max-height: 440px !important;
  overflow: hidden !important;
  display: block !important;
}.lux-gallery-section .dining-image img,
#our-gallery .dining-image img {
  min-height: 0 !important;
  height: 100% !important;
  width: 100% !important;
  object-fit: cover !important;
  display: block !important;
  filter: brightness(0.82) saturate(1.1) !important;
}.lux-gallery-section .dining-image,
#our-gallery .dining-image {
  height: 90px !important;
  min-height: 0 !important;
  max-height: 90px !important;
  overflow: hidden !important;
  border-radius: 10px !important;
  display: block !important;
}.lux-gallery-section .hotel-slider,
.lux-gallery-section .dining-slider,
#our-gallery .hotel-slider,
#our-gallery .dining-slider {
  overflow: hidden !important;
}

.lux-gallery-section .hotel-slider .swiper-wrapper,
#our-gallery .hotel-slider .swiper-wrapper {
  align-items: stretch !important;
}@media (max-width: 991px) {

  .lux-gallery-section .hotel-image,
  .lux-gallery-section .lux-main-img,
  #our-gallery .hotel-image,
  #our-gallery .lux-main-img {
    height: 360px !important;
    max-height: 360px !important;
  }

  .lux-gallery-section .dining-image,
  #our-gallery .dining-image {
    height: 75px !important;
    max-height: 75px !important;
  }
}

@media (max-width: 767px) {

  .lux-gallery-section .hotel-image,
  .lux-gallery-section .lux-main-img,
  #our-gallery .hotel-image,
  #our-gallery .lux-main-img {
    height: 280px !important;
    max-height: 280px !important;
  }

  .lux-gallery-section .dining-image,
  #our-gallery .dining-image {
    height: 65px !important;
    max-height: 65px !important;
  }
}.ix-hero {
  position: relative;
  width: 100%;
  min-height: 680px;
  height: 680px;
  overflow: hidden;
  background: #000;
  display: flex;
  flex-direction: column;
}

.ix-hero__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  background: #000;
}

.ix-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}

.ix-hero__video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  overflow: hidden;
}

.ix-hero__video-iframe iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  min-width: 100% !important;
  object-fit: cover !important;
  transform: translate(-50%, -50%) scale(1.5) !important; 
  pointer-events: none;
  opacity: 0.8;
}

@media (max-aspect-ratio: 16/9) {
  .ix-hero__video-iframe iframe {
    width: auto !important;
    height: 100% !important;
  }
}

.ix-hero__poster {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: opacity 1s ease-in-out;
}

.surat-video-poster {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: opacity 1s ease-in-out;
}

.ix-hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 110px 40px 48px 40px;
  box-sizing: border-box;
  gap: 32px;
  width: 100%;
  height: 100%;
}

.ix-hero__left {
  flex: 0 0 auto;
  width: min(46%, 580px);
  display: flex;
  align-items: center;
}

.ix-hero__kicker {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 220, 184, 0.92);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.5;
  text-align: center;
}

.ix-hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: none;
}

.ix-hero__title-static {
  display: block;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  white-space: nowrap;
  -webkit-text-fill-color: #fff;
  opacity: 1;
  text-shadow: none;
}

.ix-hero__title-dynamic {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(90deg, #e67817 0%, #ffb067 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
  letter-spacing: 0.01em;
  min-height: 1.3em;
}

.ix-hero__right {
  flex: 1 1 auto;
  display: flex;
  visibility: visible;
  opacity: 1;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
  overflow: visible;
}

.ix-hero__slider-panel {
  width: min(100%, 680px);
  display: block;
  visibility: visible;
  opacity: 1;
  background: rgba(5, 5, 8, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px 24px 24px;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.ix-hero__slider-panel:hover {
  border-color: rgba(230, 120, 23, 0.35);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 28px rgba(230, 120, 23, 0.1);
}

.ix-hero__slider-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.ix-hero__slider-title {
  color: #ffbe7b;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.ix-hero__slider-panel .upcoming-movies-pagination {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  position: static;
  width: auto;
  min-width: auto;
}

.ix-hero__slider-panel .upcoming-movies-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
  margin: 0;
  border: 0;
  transition: all 0.35s ease;
  display: inline-block;
}

.ix-hero__slider-panel .upcoming-movies-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: linear-gradient(90deg, #e67817 0%, #ffb067 100%);
  box-shadow: 0 0 10px rgba(230, 120, 23, 0.5);
}

.ix-hero__slider-panel .swiper {
  overflow: hidden;
  width: 100%;
}

.ix-hero__slider-panel .swiper-wrapper {
  width: 100%;
  align-items: stretch;
}

.ix-hero__slider-panel .swiper-slide {
  height: auto;
}

.ix-hero__slider-panel .hero-item,
.ix-hero__slider-panel .upcoming-movie-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  display: block;
  height: 100%;
}

.ix-hero__slider-panel .hero-image {
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
  min-height: 160px;
  border: none;
  position: relative;
  transition: box-shadow 0.4s ease;
}

.ix-hero__slider-panel .hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(230, 120, 23, 0);
  border-radius: 14px;
  transition: background 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.ix-hero__slider-panel .hero-image:hover::after {
  background: rgba(230, 120, 23, 0.18);
}

.ix-hero__slider-panel .hero-image:hover {
  box-shadow: 0 6px 24px rgba(230, 120, 23, 0.3);
}

.ix-hero__slider-panel .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.4s ease;
}

.ix-hero__slider-panel .hero-image:hover img {
  filter: brightness(1.12);
}.lux-about-section {
  background: linear-gradient(160deg, #0a0a0c 0%, #111113 50%, #080809 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.lux-about-section .about-glow-tr {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.lux-about-section .about-glow-bl {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.lux-about-img-wrap {
  position: relative;
}

.lux-about-img-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.lux-about-img-box img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.lux-about-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.lux-about-badge i {
  color: #e67817;
  font-size: 13px;
}

.lux-about-badge span {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lux-about-stat-card {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 200px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18, 18, 20, 0.96), rgba(8, 8, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.lux-about-stat-card .eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lux-about-stat-card .value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #e67817, #ffb067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.lux-about-stat-card .desc {
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.lux-about-sublabel {
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.lux-about-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.lux-about-desc {
  color: rgba(255, 255, 255, 0.68);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.lux-about-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 120, 23, 0.3), rgba(255, 255, 255, 0.06), transparent);
  margin-bottom: 24px;
}

.lux-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lux-about-feature i {
  color: #e67817;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.lux-about-feature span {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
}

.lux-about-stat-box {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.lux-about-stat-box strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #e67817, #ffb067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.lux-about-stat-box span {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.lux-about-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(230, 120, 23, 0.04));
  flex-wrap: wrap;
}

.lux-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e67817, #ffb067);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
}

.lux-about-btn:hover {
  box-shadow: 0 12px 30px rgba(230, 120, 23, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

.lux-view-reels {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lux-view-reels:hover {
  color: #ffb067;
}

.lux-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.lux-play-btn:hover {
  background: #e67817;
  border-color: #e67817;
  box-shadow: 0 0 20px rgba(230, 120, 23, 0.5);
}

.lux-play-btn i {
  color: #fff;
  font-size: 12px;
  margin-left: 2px;
}#our-location {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
  background: #050505;
}

.loc-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.loc-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.loc-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 6, 0.88) 0%, rgba(4, 4, 6, 0.72) 40%, rgba(4, 4, 6, 0.92) 100%);
}

.loc-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(230, 120, 23, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.loc-label-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.loc-label-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e67817);
}

.loc-label {
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.loc-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.loc-desc {
  color: rgba(255, 255, 255, 0.62);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 520px;
}

.loc-nav-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(230, 120, 23, 0.4);
  background: rgba(230, 120, 23, 0.08);
  color: #e67817;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  flex-shrink: 0;
  font-size: 14px;
}

.loc-nav-btn:hover {
  background: #e67817;
  color: #fff;
  border-color: #e67817;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.35);
}#our-gallery {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(160deg, #06060a 0%, #0d0d14 50%, #080810 100%);
  overflow: hidden;
}

.gallery-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(230, 120, 23, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.gallery-label {
  display: block;
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gallery-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.gallery-subtext {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.gallery-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 120, 23, 0.4), rgba(255, 255, 255, 0.06), transparent);
  margin-bottom: 28px;
}

.gallery-thumb {
  width: 120px;
  height: 85px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.gallery-thumb:hover {
  border-color: rgba(230, 120, 23, 0.6);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

.gallery-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(230, 120, 23, 0.4);
  background: rgba(230, 120, 23, 0.08);
  color: #e67817;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.35s ease;
}

.gallery-nav-btn:hover {
  background: #e67817;
  color: #fff;
  border-color: #e67817;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.4);
}

.gallery-main-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 120, 23, 0.06);
}

.gallery-main-wrap:hover {
  border-color: rgba(230, 120, 23, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(230, 120, 23, 0.1);
}

.gallery-corner-tl {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-top: 2px solid rgba(230, 120, 23, 0.7);
  border-left: 2px solid rgba(230, 120, 23, 0.7);
  border-radius: 4px 0 0 0;
  z-index: 3;
  pointer-events: none;
}

.gallery-corner-br {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid rgba(230, 120, 23, 0.7);
  border-right: 2px solid rgba(230, 120, 23, 0.7);
  border-radius: 0 0 4px 0;
  z-index: 3;
  pointer-events: none;
}

.gallery-main-slider {
  height: 440px;
  overflow: hidden;
}

.gallery-main-slider .swiper-wrapper {
  height: 100%;
}

.gallery-main-slider .swiper-slide {
  height: 100%;
}

.gallery-main-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}@media (max-width:1199px) {
  .ix-hero {
    min-height: 580px;
    height: 580px;
  }

  .ix-hero__left {
    width: min(48%, 520px);
  }

  .ix-hero__slider-panel {
    width: min(100%, 560px);
  }

  .ix-hero__slider-panel .hero-image {
    height: 140px;
    min-height: 140px;
  }
}

@media (max-width:991px) {
  .ix-hero {
    height: 580px;
    min-height: 580px;
  }

  .ix-hero__content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 48px;
    gap: 32px;
  }

  .ix-hero__left {
    width: 100%;
    max-width: 560px;
    align-items: center;
    justify-content: center;
  }

  .ix-hero__right {
    width: 100%;
    justify-content: center;
    align-items: center;
  }

  .ix-hero__slider-panel {
    width: 100%;
    max-width: 560px;
  }

  .ix-hero__slider-panel .hero-image {
    height: 130px;
    min-height: 130px;
  }

  .lux-about-img-box img {
    height: 400px;
  }

  .lux-about-stat-card {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
  }

  #our-location {
    padding: 80px 0 60px;
  }

  #our-gallery {
    padding: 80px 0;
  }

  .gallery-main-slider {
    height: 360px;
  }
}

@media (max-width:767px) {
  .ix-hero__content {
    padding: 110px 5% 36px;
    gap: 28px;
    align-items: flex-start;
  }

  .ix-hero__left {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .ix-hero__right {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .ix-hero__title {
    font-size: clamp(2.6rem, 12vw, 3.8rem);
  }

  .ix-hero__title-dynamic {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .ix-hero__slider-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .ix-hero__slider-panel .hero-image {
    height: 115px;
    min-height: 115px;
  }

  .lux-about-section {
    padding: 70px 0;
  }

  .lux-about-img-box img {
    height: 320px;
  }

  .lux-about-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  #our-location {
    padding: 70px 0 50px;
  }

  #our-gallery {
    padding: 70px 0;
  }

  .gallery-main-slider {
    height: 280px;
  }

  .gallery-main-wrap {
    border-radius: 18px;
  }

  .gallery-thumb {
    width: 100px;
    height: 70px;
  }
}

@media (max-width:480px) {
  .ix-hero__content {
    padding: 100px 4% 30px;
  }

  .ix-hero__kicker {
    font-size: 9px;
    padding: 8px 16px;
    letter-spacing: 0.18em;
  }

  .ix-hero__slider-panel .hero-image {
    height: 100px;
    min-height: 100px;
  }
}.lux-z2 {
  position: relative;
  z-index: 2;
}

.lux-gold-text {
  background: linear-gradient(90deg, #e67817, #ffb067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
  display: inline-block;
}.lux-about-section {
  background: linear-gradient(160deg, #0a0a0c 0%, #111113 50%, #080809 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-glow-tr {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.about-glow-bl {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 120, 23, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.lux-about-img-wrap {
  position: relative;
}

.lux-about-img-box {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.lux-about-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.lux-about-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.lux-about-badge-icon {
  color: #e67817;
  font-size: 13px;
}

.lux-about-badge-text {
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lux-about-stat-card {
  position: absolute;
  bottom: -24px;
  right: -20px;
  width: 200px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18, 18, 20, 0.96), rgba(8, 8, 10, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.lux-sc-eyebrow {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lux-sc-value {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #e67817, #ffb067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.lux-sc-desc {
  color: rgba(255, 255, 255, 0.65);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.lux-about-right {
  padding-left: clamp(20px, 4vw, 60px);
}

.lux-about-sublabel {
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.lux-about-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.lux-about-desc {
  color: rgba(255, 255, 255, 0.68);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.lux-about-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 120, 23, 0.3), rgba(255, 255, 255, 0.06), transparent);
  margin-bottom: 24px;
}

.lux-about-divider--mb28 {
  margin-bottom: 28px;
}

.lux-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lux-feature-icon {
  color: #e67817;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.lux-feature-text {
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
}

.lux-about-stat-box {
  padding: 18px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.lux-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #e67817, #ffb067);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.lux-stat-label {
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.lux-about-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.03), rgba(230, 120, 23, 0.04));
  flex-wrap: wrap;
}

.lux-about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e67817, #ffb067);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
}

.lux-about-btn:hover {
  box-shadow: 0 12px 30px rgba(230, 120, 23, 0.45);
  transform: translateY(-2px);
  color: #fff;
}

.lux-view-reels {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.lux-view-reels:hover {
  color: #ffb067;
}

.lux-play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
  flex-shrink: 0;
}

.lux-play-btn:hover {
  background: #e67817;
  border-color: #e67817;
  box-shadow: 0 0 20px rgba(230, 120, 23, 0.5);
}

.lux-play-btn i {
  color: #fff;
  font-size: 12px;
  margin-left: 2px;
}.lux-location-section {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
  background: #050505;
}

.loc-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.loc-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.loc-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 4, 6, 0.88) 0%, rgba(4, 4, 6, 0.72) 40%, rgba(4, 4, 6, 0.92) 100%);
}

.loc-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(230, 120, 23, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.loc-label-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.loc-label-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e67817);
}

.loc-label {
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.loc-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.loc-desc {
  color: rgba(255, 255, 255, 0.62);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  max-width: 520px;
}

.loc-nav-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(230, 120, 23, 0.4);
  background: rgba(230, 120, 23, 0.08);
  color: #e67817;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s ease;
  flex-shrink: 0;
  font-size: 14px;
}

.loc-nav-btn:hover {
  background: #e67817;
  color: #fff;
  border-color: #e67817;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.35);
}.lux-gallery-section {
  position: relative;
  padding: 110px 0 100px;
  background: linear-gradient(160deg, #06060a 0%, #0d0d14 50%, #080810 100%);
  overflow: hidden;
}

.gallery-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(230, 120, 23, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.gallery-label {
  display: block;
  color: #e67817;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gallery-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.gallery-subtext {
  color: rgba(255, 255, 255, 0.55);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.gallery-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(230, 120, 23, 0.4), rgba(255, 255, 255, 0.06), transparent);
  margin-bottom: 28px;
}

.gallery-thumb-slider {
  margin-bottom: 24px;
}

.gallery-thumb {
  width: 120px;
  height: 85px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.gallery-thumb:hover {
  border-color: rgba(230, 120, 23, 0.6);
}

.gallery-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

.gallery-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(230, 120, 23, 0.4);
  background: rgba(230, 120, 23, 0.08);
  color: #e67817;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.35s ease;
}

.gallery-nav-btn:hover {
  background: #e67817;
  color: #fff;
  border-color: #e67817;
  box-shadow: 0 8px 24px rgba(230, 120, 23, 0.4);
}

.gallery-main-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 120, 23, 0.06);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-main-wrap:hover {
  border-color: rgba(230, 120, 23, 0.35);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(230, 120, 23, 0.1);
}

.gallery-corner-tl {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 28px;
  height: 28px;
  border-top: 2px solid rgba(230, 120, 23, 0.7);
  border-left: 2px solid rgba(230, 120, 23, 0.7);
  border-radius: 4px 0 0 0;
  z-index: 3;
  pointer-events: none;
}

.gallery-corner-br {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border-bottom: 2px solid rgba(230, 120, 23, 0.7);
  border-right: 2px solid rgba(230, 120, 23, 0.7);
  border-radius: 0 0 4px 0;
  z-index: 3;
  pointer-events: none;
}

.gallery-main-slider {
  height: 440px;
  overflow: hidden;
}

.gallery-main-slider .swiper-wrapper {
  height: 100%;
}

.gallery-main-slider .swiper-slide {
  height: 100%;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}@media (max-width: 991px) {
  .lux-about-section {
    padding: 80px 0;
  }

  .lux-about-main-img {
    height: 400px;
  }

  .lux-about-stat-card {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 20px;
  }

  .lux-about-right {
    padding-left: 0;
  }

  .lux-location-section {
    padding: 80px 0 60px;
  }

  .lux-gallery-section {
    padding: 80px 0;
  }

  .gallery-main-slider {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .lux-about-section {
    padding: 70px 0;
  }

  .lux-about-main-img {
    height: 320px;
  }

  .lux-about-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .lux-location-section {
    padding: 70px 0 50px;
  }

  .lux-gallery-section {
    padding: 70px 0;
  }

  .gallery-main-slider {
    height: 280px;
  }

  .gallery-main-wrap {
    border-radius: 18px;
  }

  .gallery-thumb {
    width: 100px;
    height: 70px;
  }
}.gallery-thumb { width: 120px; height: 85px; border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,0.1); cursor: pointer; transition: border-color 0.3s ease; display: block; }
.gallery-thumb:hover { border-color: rgba(230,120,23,0.6); }
.gallery-thumb-img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; filter: brightness(0.85) !important; min-height: 0 !important; max-height: none !important; }.gallery-main-slider { height: 440px !important; overflow: hidden !important; }
.gallery-main-slider .swiper-wrapper { height: 100% !important; align-items: stretch !important; }
.gallery-main-slider .swiper-slide { height: 100% !important; }
.gallery-main-img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: center !important; display: block !important; filter: brightness(0.9) !important; min-height: 0 !important; max-height: none !important; }.gallery-thumb-slider { margin-bottom: 24px; overflow: hidden; }
.gallery-thumb-slider .swiper-slide { width: auto !important; }

@media (max-width: 991px) {
    .gallery-main-slider { height: 360px !important; }
}
@media (max-width: 767px) {
    .gallery-main-slider { height: 280px !important; }
    .gallery-thumb { width: 100px; height: 70px; }
}#our-gallery .gallery-thumb { width: 120px !important; height: 85px !important; overflow: hidden !important; border-radius: 10px !important; display: block !important; }
#our-gallery .gallery-thumb img,
#our-gallery .gallery-thumb-img { width: 100% !important; height: 100% !important; min-height: 0 !important; max-height: 85px !important; object-fit: cover !important; display: block !important; filter: brightness(0.85) !important; }#our-gallery .gallery-main-slider { height: 440px !important; overflow: hidden !important; display: block !important; }
#our-gallery .gallery-main-slider .swiper-wrapper { height: 100% !important; }
#our-gallery .gallery-main-slider .swiper-slide { height: 100% !important; overflow: hidden !important; }
#our-gallery .gallery-main-slider .swiper-slide img,
#our-gallery .gallery-main-img { width: 100% !important; height: 100% !important; min-height: 0 !important; max-height: 440px !important; object-fit: cover !important; object-position: center top !important; display: block !important; filter: brightness(0.9) !important; }

@media (max-width: 991px) {
    #our-gallery .gallery-main-slider { height: 360px !important; }
    #our-gallery .gallery-main-slider .swiper-slide img,
    #our-gallery .gallery-main-img { max-height: 360px !important; }
}
@media (max-width: 767px) {
    #our-gallery .gallery-main-slider { height: 280px !important; }
    #our-gallery .gallery-main-slider .swiper-slide img,
    #our-gallery .gallery-main-img { max-height: 280px !important; }
    #our-gallery .gallery-thumb { width: 100px !important; height: 70px !important; }
    #our-gallery .gallery-thumb img,
    #our-gallery .gallery-thumb-img { max-height: 70px !important; }
}body.luxury-dark-theme #our-gallery .gallery-main-slider .swiper-slide img,
body.surat-luxury-page #our-gallery .gallery-main-slider .swiper-slide img,
body #our-gallery .gallery-main-slider .swiper-slide img {
    min-height: 0 !important;
    height: 440px !important;
    max-height: 440px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    filter: brightness(0.9) !important;
}

body.luxury-dark-theme #our-gallery .gallery-thumb img,
body.surat-luxury-page #our-gallery .gallery-thumb img,
body #our-gallery .gallery-thumb img {
    min-height: 0 !important;
    height: 85px !important;
    max-height: 85px !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
    filter: brightness(0.85) !important;
}

body.luxury-dark-theme #our-gallery .gallery-main-slider,
body #our-gallery .gallery-main-slider {
    height: 440px !important;
    overflow: hidden !important;
}

body.luxury-dark-theme #our-gallery .gallery-main-slider .swiper-wrapper,
body #our-gallery .gallery-main-slider .swiper-wrapper {
    height: 100% !important;
}

body.luxury-dark-theme #our-gallery .gallery-main-slider .swiper-slide,
body #our-gallery .gallery-main-slider .swiper-slide {
    height: 440px !important;
    overflow: hidden !important;
}

@media (max-width: 991px) {
    body #our-gallery .gallery-main-slider,
    body #our-gallery .gallery-main-slider .swiper-slide { height: 360px !important; }
    body #our-gallery .gallery-main-slider .swiper-slide img { height: 360px !important; max-height: 360px !important; }
}
@media (max-width: 767px) {
    body #our-gallery .gallery-main-slider,
    body #our-gallery .gallery-main-slider .swiper-slide { height: 280px !important; }
    body #our-gallery .gallery-main-slider .swiper-slide img { height: 280px !important; max-height: 280px !important; }
    body #our-gallery .gallery-thumb img { height: 70px !important; max-height: 70px !important; }
}.lux-testi-section {
    position: relative;
    padding: 110px 0 100px;
    background: linear-gradient(160deg, #06060a 0%, #0d0d14 50%, #080810 100%);
    overflow: hidden;
}

.lux-testi-section::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 800px; height: 400px;
    background: radial-gradient(ellipse, rgba(230,120,23,0.08) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}.lux-testi-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.lux-testi-label-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.lux-testi-line {
    display: block;
    width: 48px; height: 1px;
    background: linear-gradient(90deg, transparent, #e67817, transparent);
}

.lux-testi-label {
    color: #e67817;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.44em;
    text-transform: uppercase;
}

.lux-testi-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.025em;
    line-height: 1.08;
}

.lux-testi-subtext {
    color: rgba(255,255,255,0.52);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
    margin: 0 auto;
}.lux-testi-card {
    position: relative;
    padding: 36px 32px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(145deg, rgba(16,16,22,0.98), rgba(10,10,14,0.99));
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    height: 100%;
}

.lux-testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e67817, #ffb067, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 22px 22px 0 0;
}

.lux-testi-card:hover {
    border-color: rgba(230,120,23,0.4);
    box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 40px rgba(230,120,23,0.08);
    transform: translateY(-6px);
}

.lux-testi-card:hover::before { opacity: 1; }.lux-testi-quote {
    width: 48px; height: 48px;
    border-radius: 14px;
    background: rgba(230,120,23,0.1);
    border: 1px solid rgba(230,120,23,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: background 0.4s ease;
}

.lux-testi-quote i {
    color: #e67817;
    font-size: 18px;
}

.lux-testi-card:hover .lux-testi-quote {
    background: #e67817;
    border-color: #e67817;
}

.lux-testi-card:hover .lux-testi-quote i { color: #fff; }.lux-testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.lux-testi-stars i {
    color: #e67817;
    font-size: 14px;
}.lux-testi-text {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.68);
    line-height: 1.85;
    margin: 0 0 28px;
    font-style: italic;
    transition: color 0.3s ease;
}

.lux-testi-card:hover .lux-testi-text { color: rgba(255,255,255,0.85); }.lux-testi-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(230,120,23,0.3), rgba(255,255,255,0.05), transparent);
    margin-bottom: 22px;
}.lux-testi-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lux-testi-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(230,120,23,0.3);
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.lux-testi-card:hover .lux-testi-avatar { border-color: #e67817; }

.lux-testi-avatar img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.lux-testi-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 3px;
}

.lux-testi-role {
    font-family: 'Barlow', sans-serif;
    font-size: 12px;
    color: #e67817;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}.lux-testi-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 36px 0 0;
    position: relative;
    z-index: 2;
}

.lux-testi-stat {
    flex: 1;
    text-align: center;
    padding: 28px 20px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(16,16,22,0.95), rgba(10,10,14,0.98));
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.lux-testi-stat:hover {
    border-color: rgba(230,120,23,0.35);
    transform: translateY(-4px);
}

.lux-testi-stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(90deg, #e67817, #ffb067);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.lux-testi-stat-label {
    color: rgba(255,255,255,0.55);
    font-family: 'Barlow', sans-serif;
    font-size: 13px;
    letter-spacing: 0.08em;
}@media (max-width: 991px) {
    .lux-testi-section { padding: 80px 0; }
    .lux-testi-stats { flex-wrap: wrap; gap: 16px; }
    .lux-testi-stat { flex: 1 1 calc(33% - 16px); }
}
@media (max-width: 767px) {
    .lux-testi-section { padding: 70px 0; }
    .lux-testi-card { padding: 26px 22px; }
    .lux-testi-stat { flex: 1 1 calc(50% - 16px); }
}
@media (max-width: 480px) {
    .lux-testi-stat { flex: 1 1 100%; }
}.lux-testi-slider-wrap {
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 20px;
}

.lux-testi-slider .swiper-slide {
    height: auto;
    padding: 4px;
}.lux-testi-card {
    position: relative;
    padding: 36px 32px 32px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(145deg, rgba(16,16,22,0.98), rgba(10,10,14,0.99));
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
    height: 100%;
    overflow: hidden;
}.lux-testi-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 55%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    pointer-events: none;
}

.lux-testi-card:hover::after { left: 160%; }

.lux-testi-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e67817, #ffb067, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 22px 22px 0 0;
}

.lux-testi-card:hover { border-color: rgba(230,120,23,0.4); box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 40px rgba(230,120,23,0.08); transform: translateY(-6px); }
.lux-testi-card:hover::before { opacity: 1; }.lux-testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.lux-testi-stars { display: flex; gap: 4px; }
.lux-testi-stars i { color: #e67817; font-size: 14px; }

.lux-testi-quote-icon {
    width: 42px; height: 42px;
    border-radius: 12px;
    background: rgba(230,120,23,0.1);
    border: 1px solid rgba(230,120,23,0.2);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.4s ease;
}

.lux-testi-quote-icon i { color: #e67817; font-size: 16px; }
.lux-testi-card:hover .lux-testi-quote-icon { background: #e67817; border-color: #e67817; }
.lux-testi-card:hover .lux-testi-quote-icon i { color: #fff; }

.lux-testi-text {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    line-height: 1.85;
    margin: 0 0 24px;
    font-style: italic;
    transition: color 0.3s ease;
}

.lux-testi-card:hover .lux-testi-text { color: rgba(255,255,255,0.85); }

.lux-testi-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(230,120,23,0.3), rgba(255,255,255,0.05), transparent);
    margin-bottom: 22px;
    transition: background 0.4s ease;
}

.lux-testi-card:hover .lux-testi-divider {
    background: linear-gradient(90deg, #e67817, rgba(255,176,103,0.3), transparent);
}

.lux-testi-author { display: flex; align-items: center; gap: 14px; }

.lux-testi-avatar {
    width: 50px; height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(230,120,23,0.3);
    flex-shrink: 0;
    transition: border-color 0.3s ease;
}

.lux-testi-card:hover .lux-testi-avatar { border-color: #e67817; }
.lux-testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lux-testi-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px; font-weight: 700;
    color: #fff; margin: 0 0 3px;
}

.lux-testi-role {
    font-family: 'Barlow', sans-serif;
    font-size: 12px; color: #e67817;
    letter-spacing: 0.1em; text-transform: uppercase;
}.lux-testi-pagination {
    bottom: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lux-testi-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    opacity: 1;
    transition: all 0.35s ease;
    margin: 0 !important;
}

.lux-testi-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: linear-gradient(90deg, #e67817, #ffb067);
    box-shadow: 0 0 12px rgba(230,120,23,0.45);
}.lux-testi-stat {
    padding: 28px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(145deg, rgba(16,16,22,0.95), rgba(10,10,14,0.98));
    text-align: center;
    transition: border-color 0.4s ease, transform 0.4s ease;
}

.lux-testi-stat:hover { border-color: rgba(230,120,23,0.35); transform: translateY(-4px); }

.lux-testi-stat-num {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    background: linear-gradient(90deg, #e67817, #ffb067);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; margin-bottom: 8px;
}

.lux-testi-stat-label {
    color: rgba(255,255,255,0.55);
    font-family: 'Barlow', sans-serif;
    font-size: 13px; letter-spacing: 0.08em;
}

@media (max-width: 767px) {
    .lux-testi-card { padding: 24px 20px; }
}.lux-testi-slider-wrap {
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 20px;
}.lux-testi-nav {
    display: flex;
    gap: 12px;
    position: absolute;
    top: -80px;
    right: 0;
    z-index: 5;
}

.lux-testi-prev,
.lux-testi-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(230,120,23,0.4);
    background: rgba(230,120,23,0.08);
    color: #e67817;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    outline: none;
}

.lux-testi-prev:hover,
.lux-testi-next:hover {
    background: #e67817;
    border-color: #e67817;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(230,120,23,0.45);
    transform: scale(1.08);
}.lux-testi-slider {
    overflow: hidden;
    padding-bottom: 10px;
}

.lux-testi-slider .swiper-slide {
    height: auto;
}.lux-testi-prev.swiper-button-disabled,
.lux-testi-next.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .lux-testi-nav { top: -70px; }
}

@media (max-width: 767px) {
    .lux-testi-nav { position: static; justify-content: center; margin-bottom: 24px; }
}#gallery-main-swiper {
    height: 440px !important;
    overflow: hidden !important;
    border-radius: 0 !important;
}

#gallery-main-swiper .swiper-wrapper {
    height: 440px !important;
}

#gallery-main-swiper .swiper-slide {
    height: 440px !important;
    overflow: hidden !important;
}

#gallery-main-swiper .swiper-slide img {
    width: 100% !important;
    height: 440px !important;
    min-height: 0 !important;
    max-height: 440px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

@media (max-width: 991px) {
    #gallery-main-swiper,
    #gallery-main-swiper .swiper-wrapper,
    #gallery-main-swiper .swiper-slide { height: 360px !important; }
    #gallery-main-swiper .swiper-slide img { height: 360px !important; max-height: 360px !important; }
}

@media (max-width: 767px) {
    #gallery-main-swiper,
    #gallery-main-swiper .swiper-wrapper,
    #gallery-main-swiper .swiper-slide { height: 280px !important; }
    #gallery-main-swiper .swiper-slide img { height: 280px !important; max-height: 280px !important; }
}.lux-testi-slider {
    overflow: hidden !important;
}

.lux-testi-slider .swiper-wrapper {
    align-items: stretch !important;
}

.lux-testi-slider .swiper-slide {
    height: auto !important;
    width: calc(33.333% - 16px) !important;
}

@media (max-width: 1199px) {
    .lux-testi-slider .swiper-slide {
        width: calc(50% - 12px) !important;
    }
}

@media (max-width: 767px) {
    .lux-testi-slider .swiper-slide {
        width: 100% !important;
    }
}.lux-gallery-section {
    overflow: hidden !important;
    position: relative !important;
    z-index: 1 !important;
}.lux-testi-section,
.brand-section,
.main-footer {
    position: relative !important;
    z-index: 2 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}.lux-testi-section {
    background: linear-gradient(160deg, #06060a 0%, #0d0d14 50%, #080810 100%) !important;
    padding: 110px 0 100px !important;
}.lux-testi-section { display: block !important; visibility: visible !important; opacity: 1 !important; position: relative !important; z-index: 10 !important; background: linear-gradient(160deg, #06060a 0%, #0d0d14 50%, #080810 100%) !important; padding: 110px 0 100px !important; overflow: visible !important; }

.lux-testi-section .container,
.lux-testi-section .row,
.lux-testi-section .lux-testi-header,
.lux-testi-section .lux-testi-slider-wrap { display: block !important; visibility: visible !important; opacity: 1 !important; }

.lux-testi-section .lux-testi-card { display: block !important; visibility: visible !important; opacity: 1 !important; }#gallery-main-swiper .swiper-slide img { min-height: 0 !important; height: 440px !important; object-fit: cover !important; }.lux-testi-section { display: block !important; }
.lux-testi-slider { overflow: hidden !important; }
.lux-testi-slider .swiper-slide { height: auto !important; }.lux-testi-header {
    position: relative !important;
}.lux-testi-nav {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}.lux-testi-section .row.g-4.mt-2 .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
}

@media (max-width: 991px) {
    .lux-testi-section .row.g-4.mt-2 .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    .lux-testi-nav {
        position: static !important;
        justify-content: center !important;
        margin-bottom: 24px !important;
    }
}

@media (max-width: 575px) {
    .lux-testi-section .row.g-4.mt-2 .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}.lux-testi-stats-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
    margin-top: 16px !important;
}

@media (max-width: 767px) {
    .lux-testi-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 400px) {
    .lux-testi-stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}.lux-testi-slider-wrap {
    position: relative !important;
}

.lux-testi-nav {
    position: absolute !important;
    top: -20px !important;
    right: 0 !important;
    z-index: 10 !important;
    display: flex !important;
    gap: 12px !important;
}.lux-testi-pagination {
    display: none !important;
}

@media (max-width: 767px) {
    .lux-testi-nav {
        position: static !important;
        justify-content: flex-end !important;
        margin-bottom: 20px !important;
    }
}.lux-testi-top-row {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 24px !important;
    margin-bottom: 40px !important;
}

.lux-testi-top-row .lux-testi-header {
    flex: 1 !important;
    text-align: left !important;
    margin-bottom: 0 !important;
}

.lux-testi-top-row .lux-testi-label-row {
    justify-content: flex-start !important;
}

.lux-testi-top-row .lux-testi-nav {
    position: static !important;
    flex-shrink: 0 !important;
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    padding-bottom: 4px !important;
}

@media (max-width: 767px) {
    .lux-testi-top-row {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    .lux-testi-top-row .lux-testi-header {
        text-align: center !important;
        width: 100% !important;
    }
    .lux-testi-top-row .lux-testi-label-row {
        justify-content: center !important;
    }
    .lux-testi-top-row .lux-testi-nav {
        align-self: flex-end !important;
    }
}.lux-testi-top-row .lux-testi-header { text-align: center !important; }
.lux-testi-top-row .lux-testi-label-row { justify-content: center !important; }
.lux-testi-top-row .lux-testi-subtext { margin-left: auto !important; margin-right: auto !important; }.lux-gallery-main-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(230,120,23,0.08);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.lux-gallery-main-wrap:hover {
    border-color: rgba(230,120,23,0.4);
    box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 50px rgba(230,120,23,0.12);
}.lux-gallery-slide {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.lux-gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 0;
    transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), filter 0.6s ease;
    filter: brightness(0.88) saturate(1.1);
}

.lux-gallery-swiper:hover .lux-gallery-slide img {
    transform: scale(1.04);
    filter: brightness(1.0) saturate(1.2);
}

.lux-gallery-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,6,10,0.05) 0%, rgba(6,6,10,0.45) 100%);
    pointer-events: none;
    transition: background 0.5s ease;
}.lux-gallery-prev,
.lux-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(230,120,23,0.5);
    color: #e67817;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
    backdrop-filter: blur(8px);
}

.lux-gallery-prev { left: 20px; }
.lux-gallery-next { right: 20px; }

.lux-gallery-prev:hover,
.lux-gallery-next:hover {
    background: #e67817;
    border-color: #e67817;
    color: #fff;
    box-shadow: 0 8px 24px rgba(230,120,23,0.5);
}.lux-gallery-pagination {
    bottom: 20px !important;
}

.lux-gallery-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all 0.35s ease;
    margin: 0 4px !important;
}

.lux-gallery-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 999px;
    background: #e67817;
    box-shadow: 0 0 10px rgba(230,120,23,0.5);
}@media (max-width: 991px) { .lux-gallery-slide { height: 400px; } }
@media (max-width: 767px) {
    .lux-gallery-slide { height: 300px; }
    .lux-gallery-main-wrap { border-radius: 18px; }
    .lux-gallery-prev, .lux-gallery-next { width: 42px; height: 42px; font-size: 13px; }
}.lux-gallery-left {
    background: linear-gradient(145deg, rgba(16,16,22,0.98), rgba(10,10,14,0.99));
    border: 1px solid rgba(255,255,255,0.08);
    border-right: none;
    border-radius: 24px 0 0 24px;
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lux-gallery-left::before {
    content: '';
    position: absolute;
    top: -80px; left: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(230,120,23,0.1) 0%, transparent 65%);
    pointer-events: none;
}.lux-gallery-thumbs {
    margin-bottom: 28px;
}

.lux-thumb-swiper { overflow: hidden; }

.lux-thumb-slide {
    width: 110px !important;
    height: 80px !important;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.08);
    cursor: pointer;
    transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
    flex-shrink: 0;
}

.lux-thumb-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 0;
    transition: filter 0.35s ease;
    filter: brightness(0.75);
}

.lux-thumb-slide:hover,
.lux-thumb-slide.swiper-slide-thumb-active {
    border-color: #e67817;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(230,120,23,0.3);
}

.lux-thumb-slide:hover img,
.lux-thumb-slide.swiper-slide-thumb-active img {
    filter: brightness(1.0);
}.lux-gallery-nav {
    display: flex;
    gap: 12px;
}

.lux-gallery-prev-btn,
.lux-gallery-next-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(230,120,23,0.4);
    background: rgba(230,120,23,0.08);
    color: #e67817;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
    outline: none;
}

.lux-gallery-prev-btn:hover,
.lux-gallery-next-btn:hover {
    background: #e67817;
    border-color: #e67817;
    color: #fff;
    box-shadow: 0 8px 24px rgba(230,120,23,0.45);
    transform: scale(1.08);
}.lux-gallery-right {
    position: relative;
    height: 100%;
    min-height: 480px;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    border-left: none;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.lux-gallery-right:hover {
    border-color: rgba(230,120,23,0.35);
    box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 50px rgba(230,120,23,0.1);
}

.lux-main-swiper {
    height: 100%;
    min-height: 480px;
}

.lux-main-swiper .swiper-wrapper { height: 100%; }
.lux-main-swiper .swiper-slide { height: 100%; overflow: hidden; }

.lux-main-slide-img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22,1,0.36,1), filter 0.6s ease;
    filter: brightness(0.88) saturate(1.1);
}

.lux-gallery-right:hover .lux-main-slide-img {
    transform: scale(1.04);
    filter: brightness(1.0) saturate(1.2);
}@media (max-width: 991px) {
    .lux-gallery-left { border-radius: 20px 20px 0 0; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: none; padding: 36px 28px; }
    .lux-gallery-right { border-radius: 0 0 20px 20px; border-left: 1px solid rgba(255,255,255,0.1); border-top: none; min-height: 360px; }
    .lux-main-swiper { min-height: 360px; }
    .lux-main-slide-img { min-height: 360px; }
}

@media (max-width: 767px) {
    .lux-gallery-left { padding: 28px 22px; }
    .lux-gallery-right { min-height: 280px; }
    .lux-main-swiper { min-height: 280px; }
    .lux-main-slide-img { min-height: 280px; }
    .lux-thumb-slide { width: 90px !important; height: 65px !important; }
}.lux-gallery-left {
    background: linear-gradient(145deg, rgba(12,12,18,0.99), rgba(8,8,12,0.99)) !important;
    border: 1px solid rgba(230,120,23,0.15) !important;
    border-right: none !important;
    position: relative !important;
    overflow: hidden !important;
}.lux-gallery-left::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e67817, #ffb067, transparent);
    opacity: 0.6;
}.lux-gallery-left .gallery-heading {
    font-size: clamp(2rem, 3vw, 2.8rem) !important;
    margin-bottom: 14px !important;
}.lux-thumb-slide.swiper-slide-thumb-active {
    border-color: #e67817 !important;
    box-shadow: 0 0 0 2px rgba(230,120,23,0.3), 0 8px 20px rgba(230,120,23,0.25) !important;
    transform: translateY(-3px) !important;
}

.lux-thumb-slide.swiper-slide-thumb-active img {
    filter: brightness(1.05) saturate(1.2) !important;
}.lux-main-swiper .swiper-slide img {
    transition: transform 1.2s cubic-bezier(0.22,1,0.36,1), filter 0.8s ease !important;
}.lux-gallery-right {
    border: 1px solid rgba(230,120,23,0.2) !important;
    border-left: none !important;
}

.lux-gallery-right:hover {
    border-color: rgba(230,120,23,0.5) !important;
    box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 60px rgba(230,120,23,0.15) !important;
}.lux-main-swiper .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,6,10,0.0) 50%, rgba(6,6,10,0.4) 100%);
    pointer-events: none;
    z-index: 1;
}.lux-gallery-prev-btn,
.lux-gallery-next-btn {
    width: 50px !important;
    height: 50px !important;
    background: rgba(10,10,14,0.8) !important;
    border: 1px solid rgba(230,120,23,0.45) !important;
    backdrop-filter: blur(10px) !important;
}

.lux-gallery-prev-btn:hover,
.lux-gallery-next-btn:hover {
    background: linear-gradient(135deg, #e67817, #ffb067) !important;
    border-color: transparent !important;
    box-shadow: 0 10px 28px rgba(230,120,23,0.5) !important;
    transform: scale(1.1) !important;
}#our-gallery {
    padding: 120px 0 !important;
}#our-gallery .row.g-0 {
    border-radius: 28px !important;
    overflow: hidden !important;
    border: 1px solid rgba(230,120,23,0.2) !important;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(230,120,23,0.08) !important;
}.lux-gallery-left {
    border-radius: 0 !important;
    border: none !important;
    border-right: 1px solid rgba(230,120,23,0.15) !important;
    padding: 60px 44px !important;
    background: linear-gradient(145deg, rgba(14,14,20,0.99), rgba(9,9,13,0.99)) !important;
    min-height: 560px !important;
}.lux-gallery-right {
    border-radius: 0 !important;
    border: none !important;
    min-height: 560px !important;
}

.lux-main-swiper,
.lux-main-swiper .swiper-wrapper,
.lux-main-swiper .swiper-slide {
    min-height: 560px !important;
    height: 100% !important;
}

.lux-main-slide-img {
    min-height: 560px !important;
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
}.lux-thumb-slide {
    width: 120px !important;
    height: 88px !important;
    border-radius: 12px !important;
}.lux-gallery-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,6,10,0.0) 55%, rgba(6,6,10,0.5) 100%);
    z-index: 2;
    pointer-events: none;
}@media (max-width: 991px) {
    #our-gallery { padding: 80px 0 !important; }
    #our-gallery .row.g-0 { border-radius: 22px !important; }
    .lux-gallery-left { padding: 40px 30px !important; min-height: auto !important; border-right: none !important; border-bottom: 1px solid rgba(230,120,23,0.15) !important; }
    .lux-gallery-right { min-height: 400px !important; }
    .lux-main-swiper, .lux-main-swiper .swiper-wrapper, .lux-main-swiper .swiper-slide, .lux-main-slide-img { min-height: 400px !important; }
}

@media (max-width: 767px) {
    #our-gallery { padding: 70px 0 !important; }
    #our-gallery .row.g-0 { border-radius: 18px !important; }
    .lux-gallery-left { padding: 30px 22px !important; }
    .lux-gallery-right { min-height: 300px !important; }
    .lux-main-swiper, .lux-main-swiper .swiper-wrapper, .lux-main-swiper .swiper-slide, .lux-main-slide-img { min-height: 300px !important; }
    .lux-thumb-slide { width: 90px !important; height: 68px !important; }
}        body.contact-page-luxury {
            background-color: #050505;
            color: #f3eee4;
            font-family: "Onest", sans-serif;
            overflow-x: hidden;
        }

        .contact-page-luxury .contact-section-container {
            width: min(calc(100vw - clamp(8px, 1.2vw, 18px)), 1720px);
            max-width: 1680px;
            padding-left: clamp(4px, 0.5vw, 10px);
            padding-right: clamp(4px, 0.5vw, 10px);
        }

        .contact-page-luxury .breadcrumb-wrapper {
            position: relative;
            overflow: hidden;
            padding: 180px 0 125px;
            background-position: center center;
        }

        .contact-page-luxury .breadcrumb-wrapper::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(3, 3, 3, 0.45) 0%, rgba(5, 5, 5, 0.88) 68%, #050505 100%),
                radial-gradient(circle at top right, rgba(230, 120, 23, 0.22), transparent 38%);
        }

        .contact-page-luxury .page-heading {
            position: relative;
            z-index: 1;
        }

        .contact-page-luxury .breadcrumb-sub-title h1,
        .contact-page-luxury .contact-story-card h2,
        .contact-page-luxury .contact-form-panel h2,
        .contact-page-luxury .experience-panel h3,
        .contact-page-luxury .map-preview-panel h3,
        .contact-page-luxury .luxury-map-header h2,
        .contact-page-luxury .luxury-info-card h3 {
            font-family: "Onest", sans-serif;
            letter-spacing: 0;
        }

        .contact-page-luxury .breadcrumb-sub-title h1 {
            font-size: clamp(2.75rem, 6vw, 4.9rem);
            text-transform: uppercase;
            font-weight: 800;
        }

        .contact-page-luxury .breadcrumb-items li,
        .contact-page-luxury .breadcrumb-items li a {
            color: rgba(255, 255, 255, 0.82);
        }

        .contact-luxury-section {
            position: relative;
            padding-top: clamp(10px, 1.4vw, 18px);
            background:
                radial-gradient(circle at 10% 10%, rgba(230, 120, 23, 0.1), transparent 24%),
                radial-gradient(circle at 90% 0%, rgba(230, 120, 23, 0.12), transparent 22%),
                #050505;
        }

        .contact-luxury-shell {
            position: relative;
            margin-top: -42px;
            padding: clamp(14px, 1.5vw, 20px);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 28px;
            background: linear-gradient(145deg, rgba(17, 17, 17, 0.98), rgba(8, 8, 8, 0.98));
            box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
            overflow: hidden;
            z-index: 2;
        }

        .contact-luxury-shell::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(120deg, rgba(230, 120, 23, 0.08), transparent 32%),
                linear-gradient(320deg, rgba(255, 255, 255, 0.03), transparent 26%);
            pointer-events: none;
        }

        .contact-luxury-shell::after {
            content: "";
            position: absolute;
            top: 0;
            left: 50%;
            width: min(280px, 38%);
            height: 1px;
            transform: translateX(-50%);
            background: linear-gradient(90deg, rgba(230, 120, 23, 0), rgba(230, 120, 23, 0.78), rgba(255, 255, 255, 0.38), rgba(230, 120, 23, 0.78), rgba(230, 120, 23, 0));
            pointer-events: none;
            opacity: 0.9;
        }

        .contact-luxury-grid,
        .contact-experience-grid {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 20px;
        }

        .contact-luxury-grid {
            grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
            align-items: stretch;
            margin-bottom: clamp(28px, 3vw, 42px);
            margin-top: 2px;
        }

        .contact-experience-grid {
            grid-template-columns: minmax(0, 1.16fr) minmax(280px, 0.84fr);
            align-items: stretch;
        }

        .contact-experience-grid {
            margin-top: clamp(16px, 1.8vw, 24px);
            padding-top: clamp(40px, 4vw, 58px);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }

        .contact-experience-heading {
            grid-column: 1 / -1;
            margin-top: 0;
            margin-bottom: clamp(8px, 1vw, 14px);
            text-align: left;
        }

        .contact-experience-heading-label {
            display: inline-block;
            margin-bottom: 10px;
            color: #ffb067;
            font-size: 13px;
            font-weight: 800;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .contact-experience-heading h3 {
            margin: 0 0 8px;
            color: #ffffff;
            font-size: clamp(1.42rem, 2.3vw, 1.95rem);
            font-weight: 800;
            line-height: 1.22;
        }

        .contact-experience-heading-accent {
            color: transparent;
            background: linear-gradient(90deg, #e67817 0%, #ffb067 100%);
            -webkit-background-clip: text;
            background-clip: text;
            font-style: italic;
            font-weight: 600;
        }

        .contact-experience-heading p {
            color: rgba(255, 255, 255, 0.85) !important;
            font-size: 16px;
            line-height: 1.8;
            max-width: 680px;
        }

        .contact-side-panels {
            align-content: stretch;
            display: grid;
            gap: 20px;
            height: 100%;
            align-self: stretch;
            grid-template-rows: repeat(2, minmax(0, 1fr));
        }

        .experience-panel,
        .map-preview-panel {
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .contact-luxury-section + .luxury-map-section {
            margin-top: clamp(10px, 1.2vw, 18px);
        }

        .contact-luxury-section.section-padding {
            padding-bottom: clamp(12px, 1.8vw, 24px);
        }

        .contact-story-card,
        .contact-form-panel,
        .luxury-info-card,
        .experience-panel,
        .map-preview-panel,
        .luxury-map-frame {
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
            border-radius: 24px;
            backdrop-filter: blur(12px);
        }

        .contact-story-card {
            padding: clamp(22px, 2.8vw, 30px);
        }

        .contact-story-card--hero {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 100%;
            padding: clamp(22px, 2.8vw, 30px);
            isolation: isolate;
            overflow: hidden;
            background:
                linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
                radial-gradient(circle at 85% 12%, rgba(230, 120, 23, 0.12), transparent 44%),
                #0f0f0f;
        }

        .contact-story-card--hero::after {
            content: "";
            position: absolute;
            right: -80px;
            bottom: -90px;
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(230, 120, 23, 0.18), transparent 68%);
            pointer-events: none;
            z-index: -1;
        }

        .luxury-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            align-self: flex-start;
            margin-bottom: 18px;
            padding: 9px 18px;
            border-radius: 999px;
            background: rgba(230, 120, 23, 0.12);
            border: 1px solid rgba(230, 120, 23, 0.24);
            color: #e67817;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            box-shadow: 0 10px 24px rgba(230, 120, 23, 0.16);
        }

        .luxury-badge::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #ffb067;
            box-shadow: 0 0 12px rgba(255, 176, 103, 0.9);
            flex-shrink: 0;
        }

        .contact-story-card h2,
        .contact-form-panel h2,
        .luxury-map-header h2 {
            margin-bottom: 16px;
            color: #ffffff;
            line-height: 1.2;
            font-size: clamp(2rem, 4vw, 3.3rem);
            font-weight: 800;
        }

        .contact-story-title {
            max-width: 520px;
        }

        .contact-story-title-line {
            display: block;
        }

        @media (min-width: 1200px) {
            .contact-story-title {
                max-width: 640px;
            }

            .contact-story-title-line {
                white-space: nowrap;
            }
        }

        .contact-story-accent {
            color: transparent;
            background: linear-gradient(90deg, #e67817 0%, #ffb067 100%);
            -webkit-background-clip: text;
            background-clip: text;
            font-style: italic;
            font-weight: 700;
        }

        .contact-story-card p,
        .contact-form-panel p,
        .experience-panel p,
        .map-preview-panel p,
        .luxury-info-card p,
        .luxury-map-header p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        .contact-story-lead {
            max-width: 540px;
            margin-bottom: 24px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.85;
        }

        .contact-story-note {
            position: relative;
            max-width: 540px;
            margin-bottom: 28px;
            padding-left: 40px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.85;
        }

        .contact-story-note::before {
            content: "";
            position: absolute;
            top: 13px;
            left: 0;
            width: 24px;
            height: 1px;
            background: rgba(230, 120, 23, 0.6);
        }

        .contact-story-meta {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 14px;
            width: 100%;
            max-width: 680px;
            margin-bottom: 26px;
        }

        .contact-story-meta-card {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 15px 16px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(255, 255, 255, 0.025);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
            min-height: 82px;
            transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
        }

        .contact-story-meta-card:hover {
            transform: translateY(-2px);
            border-color: rgba(230, 120, 23, 0.26);
            background: rgba(255, 255, 255, 0.045);
        }

        .contact-story-meta-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: rgba(230, 120, 23, 0.14);
            border: 1px solid rgba(230, 120, 23, 0.22);
            color: #e67817;
            flex-shrink: 0;
        }

        .contact-story-meta-copy {
            min-width: 0;
        }

        .contact-story-meta-label {
            display: block;
            margin-bottom: 4px;
            color: #e67817;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }

        .contact-story-meta-value {
            display: block;
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
        }

        .contact-action-row {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 34px;
        }

        .contact-action-row--hero {
            margin-bottom: 0;
        }

        .contact-story-cta {
            display: inline-flex;
            min-width: 178px;
            justify-content: center;
            align-items: center;
        }

        .contact-page-luxury .theme-btn.style-border {
            background: rgba(255, 255, 255, 0.08);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: none;
        }

        .contact-page-luxury .theme-btn.style-border::before,
        .contact-page-luxury .theme-btn.style-border::after {
            display: none;
        }

        .contact-page-luxury .theme-btn.style-border:hover {
            background: rgba(255, 255, 255, 0.16);
            color: #ffffff;
        }

        .contact-story-visual {
            min-height: 280px;
            display: flex;
            align-items: end;
            padding: 28px;
            border-radius: 24px;
            overflow: hidden;
            background:
                linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.82)),
                url('assets/img/home-1/hero/IMG_0293.jpg') center/cover no-repeat;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .contact-hero-visual-card {
            position: relative;
            min-height: 100%;
            overflow: hidden;
            border-radius: 28px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
            box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
        }

        .contact-hero-visual-card::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            height: 36%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
            pointer-events: none;
        }

        .contact-hero-visual-card img {
            display: block;
            width: 100%;
            height: 100%;
            min-height: 560px;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }

        .contact-hero-visual-card:hover img {
            transform: scale(1.03);
        }

        .story-visual-copy {
            max-width: 420px;
        }

        .story-visual-copy span {
            display: inline-block;
            margin-bottom: 12px;
            color: #e67817;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        .story-visual-copy strong {
            display: block;
            color: #ffffff;
            font-size: clamp(1.2rem, 2.4vw, 1.65rem);
            line-height: 1.5;
            font-weight: 700;
        }

        .contact-info-stack,
        .contact-side-panels {
            display: grid;
            gap: 20px;
        }

        .contact-side-panels {
            grid-template-rows: repeat(2, minmax(0, 1fr));
        }

        .luxury-info-card,
        .experience-panel,
        .map-preview-panel {
            padding: 26px;
        }

        .luxury-info-card {
            position: relative;
            overflow: hidden;
        }

        .luxury-info-card::after {
            content: "";
            position: absolute;
            right: -40px;
            bottom: -42px;
            width: 130px;
            height: 130px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(230, 120, 23, 0.18), transparent 72%);
        }

        .info-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 54px;
            height: 54px;
            margin-bottom: 18px;
            border-radius: 18px;
            background: rgba(230, 120, 23, 0.14);
            border: 1px solid rgba(230, 120, 23, 0.3);
            color: #e67817;
            font-size: 20px;
        }

        .luxury-info-card h3,
        .experience-panel h3,
        .map-preview-panel h3 {
            margin-bottom: 10px;
            color: #ffffff;
            font-size: 1.45rem;
            font-weight: 700;
        }

        .experience-panel p,
        .map-preview-panel p {
            color: rgba(255, 255, 255, 0.8) !important;
            font-size: 14px !important;
            line-height: 1.6 !important;
        }

        .experience-panel,
        .map-preview-panel {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
                linear-gradient(160deg, rgba(230, 120, 23, 0.08), rgba(255, 255, 255, 0));
        }

        .experience-panel::after,
        .map-preview-panel::after {
            content: "";
            position: absolute;
            inset: auto -60px -60px auto;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(230, 120, 23, 0.12), transparent 72%);
            pointer-events: none;
        }

        .experience-panel > *,
        .map-preview-panel > * {
            position: relative;
            z-index: 1;
        }

        .luxury-info-card strong,
        .mini-detail strong {
            display: block;
            color: #ffffff;
            font-size: 1rem;
            line-height: 1.8;
            font-weight: 600;
        }

        .contact-page-luxury .mini-detail a,
        .contact-page-luxury .luxury-info-card a {
            color: #ffffff;
            transition: 0.3s ease;
        }

        .contact-page-luxury .mini-detail a:hover,
        .contact-page-luxury .luxury-info-card a:hover {
            color: #e67817;
        }

        .mini-detail {
            margin-top: 18px;
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .mini-detail span {
            display: block;
            margin-bottom: 6px;
            color: #ffb067;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .contact-form-panel {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            padding: clamp(28px, 3.2vw, 40px);
            border: 2px solid rgba(230, 120, 23, 0.25);
            background:
                radial-gradient(circle at top right, rgba(230, 120, 23, 0.18), transparent 40%),
                radial-gradient(circle at bottom left, rgba(255, 176, 103, 0.08), transparent 50%),
                linear-gradient(135deg, rgba(15, 15, 15, 0.98), rgba(8, 8, 8, 0.95)),
                #0f0f0f;
            box-shadow: 
                0 24px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(230, 120, 23, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .contact-form-panel::before {
            content: "";
            position: absolute;
            top: -150px;
            right: -120px;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(230, 120, 23, 0.2), transparent 70%);
            pointer-events: none;
            animation: floatGlow 6s ease-in-out infinite;
        }

        .contact-form-panel::after {
            content: "";
            position: absolute;
            bottom: -100px;
            left: -80px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 176, 103, 0.15), transparent 70%);
            pointer-events: none;
            animation: floatGlow 8s ease-in-out infinite reverse;
        }

        @keyframes floatGlow {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
            50% { transform: translate(20px, -20px) scale(1.1); opacity: 0.8; }
        }

        .contact-form-panel > * {
            position: relative;
            z-index: 1;
        }

        .contact-form-shell-header {
            display: block;
            margin-bottom: 22px;
        }

        .contact-form-shell-headline {
            min-width: 0;
        }

        .contact-panel-kicker {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 18px;
            padding: 8px 16px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.15), rgba(230, 120, 23, 0.08));
            border: 1px solid rgba(230, 120, 23, 0.25);
            color: #ffb067 !important;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(230, 120, 23, 0.2);
        }

        .contact-panel-kicker::before {
            content: "";
            width: 24px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #ffb067, transparent);
            border-radius: 1px;
        }

        .contact-form-panel h2 {
            max-width: 640px;
            margin-bottom: 20px;
            font-size: clamp(2.1rem, 3.2vw, 2.8rem);
            line-height: 1.2;
            text-wrap: balance;
            color: #ffffff !important;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .contact-form-accent {
            color: transparent !important;
            background: linear-gradient(135deg, #e67817 0%, #ffb067 50%, #ffd700 100%) !important;
            -webkit-background-clip: text !important;
            background-clip: text !important;
            font-weight: 800;
            font-style: italic;
        }

        .contact-form-intro {
            max-width: 600px;
            margin-bottom: 28px;
            color: rgba(255, 255, 255, 0.85) !important;
            font-size: 16px;
            line-height: 1.8;
            font-weight: 500;
        }

        .inquiry-top-card {
            min-width: 170px;
            padding: 16px 18px;
            border-radius: 18px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.035);
            text-align: left;
        }

        .inquiry-top-card span {
            display: block;
            margin-bottom: 6px;
            color: #ffb067;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .inquiry-top-card strong {
            display: block;
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.55;
        }

        .inquiry-chip-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 24px;
        }

        .inquiry-chip {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            min-height: 60px;
            padding: 15px 18px;
            border-radius: 18px;
            border: 1px solid rgba(230, 120, 23, 0.2);
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.12), rgba(230, 120, 23, 0.06));
            color: #ffffff !important;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
            box-shadow: 0 4px 12px rgba(230, 120, 23, 0.15);
        }

        .inquiry-chip i {
            color: #ffb067 !important;
            font-size: 13px;
        }

        .contact-form-box {
            position: relative;
            display: flex;
            flex: 1;
            flex-direction: column;
        }

        .contact-form-grid {
            --bs-gutter-x: 1rem;
            --bs-gutter-y: 1.2rem;
            flex: 1;
            align-content: flex-start;
        }

        .contact-form-box .form-clt input,
        .contact-form-box .form-clt textarea {
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 22px;
            background: #141414;
            color: #ffffff;
            font-size: 15px;
            transition: 0.3s ease;
        }

        .contact-form-box .form-clt {
            position: relative;
        }

        .inquiry-field-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.12), rgba(230, 120, 23, 0.06));
            border: 1px solid rgba(230, 120, 23, 0.2);
            border-radius: 22px 0 0 22px;
            color: #ffb067 !important;
            font-size: 14px;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }

        .inquiry-field-shell {
            display: flex;
            align-items: stretch;
            height: 64px;
            padding: 0;
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: #141414;
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01);
            transition: all 0.3s ease;
            position: relative;
            overflow: visible !important; 
        }

        .form-clt {
            position: relative;
            overflow: visible !important; 
        }

        .inquiry-field-shell:hover {
            border-color: rgba(230, 120, 23, 0.2);
            background: #161616;
        }

        .inquiry-field-shell:focus-within {
            border-color: rgba(230, 120, 23, 0.48);
            background: #1a1a1a;
            box-shadow: 0 0 0 4px rgba(230, 120, 23, 0.08);
        }

        .inquiry-field-shell input {
            border-left: none !important;
            border-radius: 0 22px 22px 0 !important;
            height: 64px !important;
            background: transparent !important;
            color: #ffffff !important;
        }

        .contact-form-box .form-clt textarea {
            min-height: 164px;
            padding: 20px 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 22px;
            background: #141414;
            color: #ffffff;
            font-size: 15px;
            transition: 0.3s ease;
        }        .inquiry-field-shell .nice-select,
        .inquiry-field-shell select {
            flex: 1;
            background: transparent !important;
            background-color: transparent !important;
            border: none !important;
            height: 64px !important;
            line-height: 64px !important;
            padding-left: 24px !important;
            color: #ffffff !important;
            font-size: 15px !important;
            border-radius: 0 22px 22px 0 !important;
            width: 100% !important;
            outline: none !important;
            cursor: pointer;
            box-shadow: none !important;
            display: flex;
            align-items: center;
            z-index: 5; 
            pointer-events: auto !important;
        }        .inquiry-field-shell select option {
            background-color: #1a1a1a;
            color: #ffffff;
        }

        .inquiry-field-shell .nice-select .current {
            color: #ffffff !important;
            display: block;
            line-height: 64px;
        }        .inquiry-field-shell .nice-select:after {
            right: 24px;
            border-bottom: 2px solid #ffb067 !important;
            border-right: 2px solid #ffb067 !important;
            width: 8px;
            height: 8px;
            margin-top: -5px;
            transform: rotate(45deg);
        }        .inquiry-field-shell select {
            appearance: none;
            -webkit-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffb067' d='M1 4l5 5 5-5z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: calc(100% - 24px) center;
        }

        .inquiry-field-shell .nice-select .list {
            background: #1a1a1a !important;
            border: 1px solid rgba(230, 120, 23, 0.3) !important;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8) !important;
            width: 100%;
            margin-top: 5px;
            border-radius: 12px;
            z-index: 99999 !important;
            position: absolute;
            left: 0;
            overflow: hidden;
            display: block !important; 
            visibility: hidden;
            opacity: 0;
            transition: all 0.2s ease;
        }

        .inquiry-field-shell .nice-select.open .list {
            visibility: visible;
            opacity: 1;
        }

        .inquiry-field-shell .nice-select .option {
            padding-left: 24px;
            padding-right: 24px;
            color: rgba(255, 255, 255, 0.8) !important;
            line-height: 48px;
            min-height: 48px;
            transition: 0.2s ease;
        }

        .inquiry-field-shell .nice-select .option:hover, 
        .inquiry-field-shell .nice-select .option.focus, 
        .inquiry-field-shell .nice-select .option.selected.focus {
            background-color: rgba(230, 120, 23, 0.15) !important;
            color: #ffb067 !important;
        }

        .inquiry-field-shell .nice-select .option.selected {
            color: #ffb067 !important;
            font-weight: 600;
            background-color: rgba(230, 120, 23, 0.05) !important;
        }        .inquiry-field-shell input[type="date"]::-webkit-calendar-picker-indicator {
            filter: invert(1) sepia(100%) saturate(500%) hue-rotate(340deg) brightness(1.2);
            cursor: pointer;
            margin-right: 15px;
        }

        .contact-form-box .form-clt textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .contact-form-box .form-clt textarea:focus {
            border-color: rgba(230, 120, 23, 0.48);
            background: #1a1a1a;
            box-shadow: 0 0 0 4px rgba(230, 120, 23, 0.08);
            outline: none;
        }

        .contact-form-box .form-clt input {
            height: 64px;
            padding: 0 24px;
            width: 100%;
            border: none;
            background: transparent;
            color: #ffffff;
            font-size: 15px;
        }

        .contact-form-box .form-clt input:focus {
            outline: none;
        }

        .contact-form-box .form-clt input::placeholder,
        .contact-form-box .form-clt textarea::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .contact-form-box .form-clt input:focus,
        .contact-form-box .form-clt textarea:focus {
            border-color: rgba(230, 120, 23, 0.48);
            background: #1a1a1a;
            box-shadow: 0 0 0 4px rgba(230, 120, 23, 0.08);
        }

        .contact-form-box h4 {
            margin-bottom: 12px;
            color: #ffffff !important;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            font-family: 'Barlow', sans-serif;
        }

        .contact-submit-row {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: flex-start;
            gap: 18px;
            margin-top: 0;
            padding-top: 0;
        }

        .contact-submit-copy {
            color: rgba(255, 255, 255, 0.6);
            font-size: 14px;
            line-height: 1.75;
            max-width: 360px;
        }

        .contact-submit-btn {
            min-width: 190px;
            justify-content: center;
        }

        .contact-form-footer {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-top: auto;
            padding-top: 18px;
        }

        .contact-consent-card {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            width: 100%;
            padding: 0;
            border: 0;
            background: transparent;
            cursor: pointer;
        }

        .contact-consent-card input {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            flex-shrink: 0;
            appearance: none;
            -webkit-appearance: none;
            background: rgba(230, 120, 23, 0.05);
            border: 2px solid #e67817;
            border-radius: 6px;
            display: inline-grid;
            place-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-consent-card input::before {
            content: "";
            width: 12px;
            height: 12px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
            background-size: contain;
            background-repeat: no-repeat;
            transform: scale(0);
            transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .contact-consent-card input:checked {
            background: #e67817;
            box-shadow: 0 0 15px rgba(230, 120, 23, 0.4);
        }

        .contact-consent-card input:checked::before {
            transform: scale(1);
        }

        .contact-consent-card input:hover {
            background: rgba(230, 120, 23, 0.15);
            transform: scale(1.05);
        }

        .contact-consent-copy span {
            display: block;
            color: rgba(255, 255, 255, 0.72);
            font-size: 12px;
            line-height: 1.6;
        }

        .contact-side-panels {
            display: grid;
            gap: 18px;
            grid-template-rows: auto auto;
            height: 100%;
        }        .luxury-contact-panel {
            position: relative;
            overflow: hidden;
            display: flex;
            height: 100%;
            padding: 20px;
            border-radius: 30px;
            border: 1.5px solid rgba(230, 120, 23, 0.25);
            background: 
                radial-gradient(circle at top right, rgba(230, 120, 23, 0.12), transparent 35%),
                radial-gradient(circle at bottom left, rgba(255, 176, 103, 0.06), transparent 45%),
                linear-gradient(135deg, rgba(15, 15, 15, 0.98), rgba(8, 8, 8, 0.95));
            box-shadow: 
                0 16px 40px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(230, 120, 23, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);
        }

        .luxury-contact-panel::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -80px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(230, 120, 23, 0.2), transparent 70%);
            pointer-events: none;
            animation: floatGlow 8s ease-in-out infinite;
        }

        .luxury-contact-panel::after {
            content: "";
            position: absolute;
            inset: 12px;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            pointer-events: none;
        }

        .luxury-panel-header {
            margin-bottom: 16px;
        }

        .luxury-panel-heading-group {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .luxury-panel-topline {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }

        .luxury-panel-topline .luxury-icon-wrapper,
        .luxury-panel-topline .luxury-panel-kicker {
            margin-bottom: 0;
        }

        .luxury-icon-wrapper {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            margin-bottom: 12px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.18), rgba(230, 120, 23, 0.08));
            border: 1.5px solid rgba(230, 120, 23, 0.25);
            color: #ffb067;
            font-size: 20px;
            box-shadow: 0 6px 18px rgba(230, 120, 23, 0.25);
        }

        .luxury-panel-kicker {
            display: inline-block;
            margin-bottom: 12px;
            padding: 6px 16px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.15), rgba(230, 120, 23, 0.08));
            border: 1px solid rgba(230, 120, 23, 0.25);
            color: #ffb067 !important;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            box-shadow: 0 4px 12px rgba(230, 120, 23, 0.2);
        }

        .luxury-panel-title {
            margin: 0;
            color: #ffffff !important;
            font-size: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
            font-family: 'Outfit', sans-serif;
        }

        .luxury-panel-desc {
            margin-bottom: 16px;
            color: rgba(255, 255, 255, 0.85) !important;
            font-size: 13px;
            line-height: 1.6;
            font-weight: 500;
        }        .box-content {
            display: flex;
            flex-direction: column;
            gap: 14px;
            height: 100%;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .box-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 20px 0;
        }

        .divider-line {
            flex: 1;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(230, 120, 23, 0.3), transparent);
        }

        .divider-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.15), rgba(230, 120, 23, 0.08));
            border: 1px solid rgba(230, 120, 23, 0.25);
            color: #ffb067;
            font-size: 14px;
        }

        .office-description {
            margin-bottom: 24px;
            padding: 16px;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.08), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(230, 120, 23, 0.15);
            color: rgba(255, 255, 255, 0.9) !important;
            font-size: 14px;
            line-height: 1.6;
            font-weight: 500;
        }

        .office-section {
            margin-bottom: 14px;
            padding: 16px;
            width: 100%;
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
            transition: all 0.3s ease;
        }

        .office-section:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(230, 120, 23, 0.2);
            transform: translateY(-2px);
        }

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

        .office-section-title {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            color: #ffb067 !important;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .office-section-title i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 10px;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.18), rgba(230, 120, 23, 0.08));
            border: 1px solid rgba(230, 120, 23, 0.25);
            color: #ffb067;
            font-size: 10px;
            box-shadow: 0 2px 6px rgba(230, 120, 23, 0.15);
        }

        .office-details {
            padding-left: 36px;
        }

        .office-details strong {
            display: block;
            color: #ffffff !important;
            font-size: 13px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 3px;
        }

        .office-details small {
            display: block;
            color: rgba(255, 255, 255, 0.65) !important;
            font-size: 11px;
            margin-bottom: 6px;
            font-weight: 500;
        }

        .office-details strong:last-child {
            margin-bottom: 0;
        }

        .office-details small:last-child {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .box-part {
                padding: 24px;
            }

            .contact-side-panels {
                gap: 16px;
            }

            .luxury-contact-panel {
                padding: 18px;
                border-radius: 24px;
            }

            .luxury-contact-panel::after {
                inset: 10px;
                border-radius: 18px;
            }

            .box-divider {
                padding: 16px 0;
            }
            
            .office-description {
                padding: 14px;
                font-size: 13px;
            }
            
            .office-section {
                padding: 16px;
            }
            
            .office-details {
                padding-left: 0;
                margin-top: 12px;
            }

        }

        .luxury-services-grid {
            display: grid;
            gap: 16px;
            margin-bottom: 32px;
        }

        .luxury-service-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.08), rgba(255, 255, 255, 0.03));
            border: 1px solid rgba(230, 120, 23, 0.15);
            transition: all 0.3s ease;
        }

        .luxury-service-item:hover {
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.12), rgba(255, 255, 255, 0.06));
            border-color: rgba(230, 120, 23, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(230, 120, 23, 0.15);
        }

        .service-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.2), rgba(230, 120, 23, 0.1));
            border: 1px solid rgba(230, 120, 23, 0.3);
            color: #ffb067;
            font-size: 16px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(230, 120, 23, 0.2);
        }

        .service-content span {
            display: block;
            color: #ffffff !important;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
        }

        .service-content small {
            display: block;
            color: rgba(255, 255, 255, 0.7) !important;
            font-size: 12px;
            margin-top: 2px;
        }

        .luxury-contact-details {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }

        .contact-detail-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px;
            width: 100%;
            border-radius: 18px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
            border: 1px solid rgba(255, 255, 255, 0.06);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
            transition: all 0.3s ease;
            color: inherit;
            text-decoration: none;
        }

        .contact-detail-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(230, 120, 23, 0.2);
            transform: translateY(-2px);
        }

        .contact-detail-item i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(230, 120, 23, 0.1);
            border: 1px solid rgba(230, 120, 23, 0.2);
            color: #ffb067;
            font-size: 14px;
            flex-shrink: 0;
        }

        .contact-detail-info {
            flex: 1;
        }

        .contact-detail-info span {
            display: block;
            color: #ffb067;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            margin-bottom: 4px;
        }

        .contact-detail-info a,
        .contact-detail-info strong {
            display: block;
            color: #ffffff !important;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
        }

        .contact-detail-info small {
            display: block;
            color: rgba(255, 255, 255, 0.6) !important;
            font-size: 12px;
            margin-top: 2px;
        }        .head-office-panel {
            position: relative;
            overflow: hidden;
            padding: 28px;
            border: 2px solid rgba(230, 120, 23, 0.25);
            background: 
                radial-gradient(circle at top left, rgba(230, 120, 23, 0.12), transparent 40%),
                radial-gradient(circle at bottom right, rgba(255, 176, 103, 0.06), transparent 50%),
                linear-gradient(135deg, rgba(15, 15, 15, 0.98), rgba(8, 8, 8, 0.95));
            box-shadow: 
                0 20px 50px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(230, 120, 23, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
        }

        .head-office-panel::before {
            content: "";
            position: absolute;
            top: -80px;
            left: -60px;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(230, 120, 23, 0.15), transparent 70%);
            pointer-events: none;
            animation: floatGlow 10s ease-in-out infinite;
        }

        .contact-detail-info a:hover {
            color: #ffb067 !important;
        }

        .inquiry-side-card {
            border: 1px solid rgba(215, 150, 69, 0.16);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
        }

        .inquiry-side-card .contact-panel-kicker {
            margin-bottom: 12px;
        }

        .inquiry-side-copy {
            margin-bottom: 18px;
        }

        .contact-info-card {
            padding: 24px;
        }

        .contact-info-card .info-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            border-radius: 16px;
            font-size: 16px;
        }

        .contact-info-card h3 {
            margin-bottom: 12px;
            font-size: 1.62rem;
            line-height: 1.25;
        }

        .contact-info-copy {
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.6) !important;
            font-size: 15px;
            line-height: 1.75;
        }

        .contact-info-detail {
            padding-top: 18px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .contact-info-detail + .contact-info-detail {
            margin-top: 16px;
        }

        .contact-info-detail span {
            display: block;
            margin-bottom: 9px;
            color: #e67817;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .contact-info-detail strong,
        .contact-info-detail a {
            display: block;
            color: #ffffff;
            font-size: 15px;
            font-weight: 600;
            line-height: 1.75;
        }

        .inquiry-service-grid {
            display: grid;
            gap: 12px;
        }

        .inquiry-service-item {
            display: grid;
            grid-template-columns: 42px minmax(0, 1fr);
            gap: 14px;
            align-items: start;
            padding: 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .inquiry-service-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: rgba(230, 120, 23, 0.14);
            border: 1px solid rgba(230, 120, 23, 0.24);
            color: #f2a142;
            font-size: 15px;
        }

        .inquiry-service-item span {
            display: block;
            margin-bottom: 5px;
            color: #ffb067;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .inquiry-service-item strong {
            display: block;
            color: #ffffff;
            font-size: 14px;
            line-height: 1.6;
            font-weight: 600;
        }

        .inquiry-access-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 18px;
        }

        .inquiry-access-item {
            padding: 16px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .inquiry-access-item span {
            display: block;
            margin-bottom: 6px;
            color: #ffb067;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .inquiry-access-item strong {
            display: block;
            color: #ffffff;
            font-size: 14px;
            line-height: 1.6;
            font-weight: 600;
        }

        .inquiry-action-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .inquiry-action-stack .theme-btn {
            flex: 1 1 180px;
            justify-content: center;
        }

        .inquiry-action-stack .theme-btn i {
            margin-left: 8px;
        }

        .experience-list {
            display: grid;
            gap: 14px;
            margin-top: 22px;
        }

        .experience-item {
            padding: 16px 18px;
            border-radius: 18px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.07);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
        }

        .experience-item span {
            display: inline-block;
            margin-bottom: 6px;
            color: #e67817;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.16em;
            text-transform: uppercase;
        }

        .experience-item strong {
            display: block;
            color: #fff;
            font-size: 1.05rem;
            font-weight: 600;
            line-height: 1.55;
        }

        .map-preview-panel .theme-btn {
            margin-top: 18px;
        }

        .map-preview-list {
            display: grid;
            gap: 14px;
            margin-top: 24px;
        }

        .map-preview-list .mini-detail {
            margin-top: 0;
            padding: 16px 18px 0;
            border-top: 0;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .map-preview-list .mini-detail:first-child {
            padding-top: 16px;
        }

        .map-preview-list .mini-detail strong {
            line-height: 1.65;
        }

        .luxury-map-section {
            background: #050505;
        }

        .luxury-map-section.section-padding {
            padding-bottom: clamp(54px, 6vw, 82px);
        }

        .luxury-map-frame {
            padding: clamp(12px, 1.4vw, 16px);
        }

        .luxury-map-header {
            display: flex;
            flex-wrap: wrap;
            align-items: end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 18px;
        }

        .luxury-map-header h2 {
            margin-bottom: 10px;
            font-size: clamp(1.9rem, 4vw, 2.8rem);
        }

        .luxury-map-embed {
            overflow: hidden;
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .luxury-map-embed iframe {
            display: block;
            width: 100%;
            height: clamp(340px, 60vh, 560px);
            filter: grayscale(1) contrast(1.15) brightness(0.82);
        }

        .gujarat-map-layout {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 22px;
            align-items: start;
        }

        .gujarat-map-stage {
            position: relative;
            border-radius: 28px;
            border: 1px solid rgba(217, 138, 43, 0.42);
            background: linear-gradient(180deg, rgba(16, 16, 16, 0.98), rgba(8, 8, 8, 1));
            overflow: hidden;
            padding: 14px;
            box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
        }

        .gujarat-map-stage::before {
            content: none;
        }

        .gujarat-map-stage::after {
            content: none;
        }

        .gujarat-map-canvas {
            position: relative;
            width: 100%;
            aspect-ratio: 1111 / 760;
            overflow: hidden;
        }

        .gujarat-map-image {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            margin: auto;
            object-fit: contain;
            object-position: center center;
            background: transparent;
            opacity: 0.98;
            filter: sepia(1) saturate(2.1) hue-rotate(336deg) brightness(0.72) contrast(1.34);
        }

        .gujarat-map-canvas::after {
            content: "";
            position: absolute;
            inset: 0;
            pointer-events: none;
            background:
                radial-gradient(circle at 42% 52%, rgba(232, 146, 48, 0.16), transparent 58%),
                linear-gradient(180deg, rgba(255, 180, 94, 0.06), rgba(0, 0, 0, 0));
        }

        .gujarat-map-marker {
            position: absolute;
            top: var(--top);
            left: var(--left);
            transform: translate(calc(-50% + var(--shift-x, 0px)), calc(-50% + var(--shift-y, 0px)));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            background: transparent;
            border: 0;
            color: #e67817;
            transition: 0.3s ease;
            z-index: 2;
            text-decoration: none;
        }

        .gujarat-map-marker:hover {
            transform: translate(calc(-50% + var(--shift-x, 0px)), calc(-50% + var(--shift-y, 0px) - 3px)) scale(1.04);
            color: #ffb067;
        }

        .gujarat-map-pin {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: auto;
            height: auto;
            background: transparent;
            color: inherit;
            font-size: 32px;
            line-height: 1;
            flex-shrink: 0;
            text-shadow:
                0 0 10px rgba(235, 134, 31, 0.28),
                0 0 18px rgba(235, 134, 31, 0.18);
        }

        .gujarat-map-pin::after {
            content: none;
        }

        .gujarat-map-side {
            display: grid;
            grid-template-columns: 1fr;
            margin-top: 0;
            gap: 14px;
            align-content: start;
        }

        .gujarat-map-card {
            padding: 14px;
            border-radius: 22px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.015));
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
        }

        .gujarat-map-card--locations {
            height: 100%;
        }

        .gujarat-map-card h3 {
            margin-bottom: 10px;
            color: #ffffff;
            font-size: 1.15rem;
            font-weight: 700;
        }

        .gujarat-map-card p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.75;
        }

        .gujarat-map-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
            padding: 8px 14px;
            border-radius: 999px;
            background: rgba(230, 120, 23, 0.1);
            border: 1px solid rgba(230, 120, 23, 0.2);
            color: #e67817;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .gujarat-map-card--summary h3,
        .gujarat-map-card--reach h3 {
            margin-bottom: 10px;
            font-size: 1.34rem;
            line-height: 1.35;
        }

        .gujarat-map-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-top: 16px;
        }

        .gujarat-map-stat {
            padding: 14px 10px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.03);
            text-align: center;
        }

        .gujarat-map-stat strong {
            display: block;
            margin-bottom: 6px;
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
        }

        .gujarat-map-stat span {
            display: block;
            color: rgba(255, 255, 255, 0.6);
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .gujarat-map-feature-list {
            display: grid;
            gap: 10px;
            margin: 16px 0 0;
            padding: 0;
            list-style: none;
        }

        .gujarat-map-feature-list li {
            position: relative;
            padding-left: 20px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.7;
        }

        .gujarat-map-feature-list li::before {
            content: "";
            position: absolute;
            top: 10px;
            left: 0;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #e67817;
            box-shadow: 0 0 0 4px rgba(230, 120, 23, 0.12);
        }

        .gujarat-map-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: 18px;
            padding: 14px 18px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            background: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            font-size: 12px;
            font-weight: 800;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            transition: 0.3s ease;
        }

        .gujarat-map-cta:hover {
            background: rgba(230, 120, 23, 0.12);
            border-color: rgba(230, 120, 23, 0.34);
            color: #ffffff;
        }

        .gujarat-location-list {
            display: grid;
            gap: 12px;
            margin-top: 18px;
        }

        .gujarat-location-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 14px 16px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            color: #ffffff;
            transition: 0.3s ease;
        }

        .gujarat-location-link:hover {
            border-color: rgba(230, 120, 23, 0.38);
            background: rgba(230, 120, 23, 0.08);
            color: #ffffff;
        }

        .gujarat-location-link strong {
            display: block;
            font-size: 14px;
            font-weight: 700;
        }

        .gujarat-location-link span {
            display: block;
            margin-top: 4px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .gujarat-location-link i {
            color: #e67817;
            font-size: 15px;
            flex-shrink: 0;
        }        .contact-experience-heading h3 {
            font-size: clamp(1.65rem, 2.8vw, 2.2rem) !important;
            font-weight: 800 !important;
        }        .premium-services-showcase {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .premium-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 16px;
            margin-top: 20px;
        }

        .premium-service-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 18px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
        }

        .premium-service-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(230, 120, 23, 0.3);
            transform: translateY(-2px);
        }

        .premium-service-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 46px;
            height: 46px;
            border-radius: 16px;
            background: rgba(230, 120, 23, 0.15);
            border: 1px solid rgba(230, 120, 23, 0.25);
            color: #e67817;
            font-size: 16px;
            flex-shrink: 0;
        }

        .premium-service-content span {
            display: block;
            margin-bottom: 6px;
            color: #ffb067;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
        }

        .premium-service-content strong {
            display: block;
            color: #ffffff !important;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
        }

        .premium-service-content span {
            color: #ffb067 !important;
        }        .premium-features-list {
            margin: 20px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 16px;
            margin-bottom: 10px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.08), rgba(255, 255, 255, 0.03));
            border: 1px solid rgba(230, 120, 23, 0.15);
            transition: all 0.4s ease;
        }

        .feature-item:hover {
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.12), rgba(255, 255, 255, 0.06));
            border-color: rgba(230, 120, 23, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(230, 120, 23, 0.15);
        }

        .feature-item i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.2), rgba(230, 120, 23, 0.1));
            border: 1px solid rgba(230, 120, 23, 0.3);
            color: #ffb067;
            font-size: 16px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(230, 120, 23, 0.2);
        }

        .feature-item span {
            color: #ffffff !important;
            font-size: 14px;
            font-weight: 600;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }        @media (max-width: 992px) {
            .contact-luxury-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            .contact-experience-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .contact-side-panels {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }
        }

        @media (max-width: 768px) {
            .contact-luxury-shell {
                margin-top: -20px;
                padding: clamp(12px, 2vw, 16px);
                border-radius: 20px;
            }
            
            .premium-services-grid {
                grid-template-columns: 1fr;
            }
            
            .premium-service-item {
                gap: 12px;
                padding: 14px;
            }
            
            .premium-service-icon {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }
            
            .contact-form-panel {
                padding: clamp(20px, 4vw, 24px);
            }
            
            .inquiry-field-shell {
                flex-direction: column;
            }
            
            .inquiry-field-icon {
                width: 100%;
                height: 40px;
                border-radius: 12px 12px 0 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            
            .inquiry-field-shell input,
            .inquiry-field-shell textarea {
                border-radius: 0 0 22px 22px !important;
                border-left: 1px solid rgba(255, 255, 255, 0.06) !important;
            }
            
            .inquiry-field-shell--message .inquiry-field-icon {
                align-items: center;
                padding-top: 0;
            }
            
            .contact-side-panels {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            
            .location-item,
            .service-item {
                padding: 10px;
                gap: 10px;
            }
            
            .location-badge {
                min-width: 50px;
                font-size: 9px;
            }
            
            .service-item i {
                width: 28px;
                height: 28px;
                font-size: 11px;
            }
            
            .inquiry-chip-row {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .contact-form-grid {
                --bs-gutter-x: 0.8rem;
                --bs-gutter-y: 1rem;
            }
        }

        @media (max-width: 480px) {
            .contact-experience-heading h3 {
                font-size: clamp(1.4rem, 5vw, 1.8rem) !important;
            }
            
            .premium-services-showcase {
                margin-top: 24px;
                padding-top: 20px;
            }
            
            .premium-service-item {
                padding: 12px;
            }
            
            .contact-form-panel h2 {
                font-size: clamp(1.6rem, 4.5vw, 2rem) !important;
            }
            
            .contact-info-card {
                padding: 20px;
            }
        }

        .contact-experience-heading h3 {
            letter-spacing: -0.01em;
            line-height: 1.2 !important;
            margin-bottom: 14px !important;
        }

        .contact-experience-heading p {
            font-size: 15px !important;
            font-weight: 500 !important;
            line-height: 1.85 !important;
            color: rgba(255, 255, 255, 0.75) !important;
            max-width: 580px;
        }

        .contact-form-panel h2 {
            font-size: clamp(1.8rem, 2.6vw, 2.3rem) !important;
            font-weight: 800 !important;
            letter-spacing: -0.01em;
            line-height: 1.25 !important;
        }

        .contact-form-panel {
            background: 
                radial-gradient(circle at 80% -20%, rgba(230, 120, 23, 0.12), transparent 35%),
                linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
                #0f0f0f !important;
            border: 1px solid rgba(230, 120, 23, 0.25) !important;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(230, 120, 23, 0.1) !important;
        }

        .inquiry-chip {
            background: rgba(230, 120, 23, 0.06) !important;
            border: 1px solid rgba(230, 120, 23, 0.2) !important;
            font-size: 13px !important;
            font-weight: 600 !important;
        }

        .inquiry-chip:hover {
            background: rgba(230, 120, 23, 0.12) !important;
            border-color: rgba(230, 120, 23, 0.4) !important;
        }

        .contact-info-card {
            background: 
                linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
                linear-gradient(160deg, rgba(230, 120, 23, 0.06), transparent) !important;
            border: 1px solid rgba(230, 120, 23, 0.18) !important;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(230, 120, 23, 0.08) !important;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .contact-info-card:hover {
            border-color: rgba(230, 120, 23, 0.35) !important;
            transform: translateY(-6px);
            box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(230, 120, 23, 0.1) !important;
        }

        .contact-info-card h3 {
            font-size: 1.35rem !important;
            font-weight: 700 !important;
            letter-spacing: -0.005em;
            margin-bottom: 16px !important;
        }

        .contact-info-copy {
            display: none !important;
        }

        .contact-info-detail {
            padding-top: 14px !important;
            padding-bottom: 0;
            border-top: 1px solid rgba(230, 120, 23, 0.15) !important;
        }

        .contact-info-detail:first-of-type {
            border-top: none !important;
            padding-top: 0 !important;
        }

        .contact-info-detail span {
            font-size: 11px !important;
            font-weight: 700 !important;
            letter-spacing: 0.12em !important;
            color: #ffb067 !important;
            margin-bottom: 6px !important;
        }

        .contact-info-detail strong,
        .contact-info-detail a {
            font-size: 14px !important;
            font-weight: 600 !important;
            color: #ffffff !important;
            line-height: 1.6 !important;
        }

        .info-icon {
            background: linear-gradient(135deg, rgba(230, 120, 23, 0.18), rgba(230, 120, 23, 0.1)) !important;
            border: 1px solid rgba(230, 120, 23, 0.32) !important;
            box-shadow: 0 8px 24px rgba(230, 120, 23, 0.15) !important;
            width: 50px !important;
            height: 50px !important;
            font-size: 18px !important;
        }

        @keyframes mapPulse {
            0% {
                transform: scale(0.85);
                opacity: 0.9;
            }

            70% {
                transform: scale(1.35);
                opacity: 0;
            }

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

        .contact-page-luxury .brand-section.section-bg {
            background: linear-gradient(180deg, #111111 0%, #050505 100%);
            padding-top: 40px;
        }

        @media (max-width: 1280px) {
            .contact-luxury-grid {
                grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
                gap: 20px;
            }

            .contact-story-title {
                max-width: 100%;
            }

            .contact-story-card--hero {
                padding: 24px;
            }

            .contact-hero-visual-card img {
                min-height: 500px;
            }

            .contact-experience-grid {
                grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
                gap: 20px;
            }

            .inquiry-chip-row {
                grid-template-columns: 1fr;
            }

        }

        @media (max-width: 991px) {
            .contact-page-luxury .contact-section-container {
                width: min(calc(100vw - 16px), 100%);
                padding-left: 8px;
                padding-right: 8px;
            }

            .contact-page-luxury .breadcrumb-wrapper {
                padding: 160px 0 110px;
            }

            .contact-luxury-shell {
                margin-top: -28px;
            }

            .contact-luxury-grid,
            .contact-experience-grid {
                grid-template-columns: 1fr;
            }

            .gujarat-map-layout {
                grid-template-columns: 1fr;
            }

            .gujarat-map-side {
                margin-top: 4px;
            }

            .contact-side-panels {
                align-self: auto;
                grid-template-rows: none;
            }

            .inquiry-access-grid {
                grid-template-columns: 1fr 1fr;
            }

            .contact-experience-heading p {
                max-width: 100%;
            }
        }

        @media (max-width: 767px) {
            .contact-page-luxury .contact-section-container {
                width: min(calc(100vw - 10px), 100%);
                padding-left: 5px;
                padding-right: 5px;
            }

            .contact-page-luxury .breadcrumb-wrapper {
                padding: 145px 0 95px;
            }

            .contact-luxury-section {
                padding-top: 8px;
            }

            .contact-luxury-shell {
                margin-top: -18px;
                padding: 14px;
            }

            .contact-story-card,
            .contact-form-panel,
            .luxury-info-card,
            .experience-panel,
            .map-preview-panel,
            .luxury-map-frame {
                border-radius: 22px;
            }

            .contact-experience-heading {
                margin-bottom: 12px;
            }

            .contact-experience-heading h3 {
                font-size: 1.26rem;
            }

            .contact-story-card h2,
            .contact-form-panel h2,
            .luxury-map-header h2 {
                font-size: 1.8rem;
            }

            .contact-story-note {
                padding-left: 0;
            }

            .contact-story-note::before {
                display: none;
            }

            .contact-story-meta {
                grid-template-columns: 1fr;
            }

            .contact-action-row--hero {
                width: 100%;
            }

            .contact-story-cta {
                width: 100%;
                min-width: 0;
            }

            .contact-story-visual {
                min-height: 220px;
                padding: 20px;
            }

            .contact-form-grid {
                --bs-gutter-x: 0.9rem;
                --bs-gutter-y: 0.9rem;
            }

            .inquiry-chip-row {
                grid-template-columns: 1fr;
                margin-bottom: 18px;
            }

            .contact-submit-row {
                flex-direction: column;
                align-items: stretch;
            }

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

            .contact-hero-visual-card img {
                min-height: 320px;
            }

            .inquiry-access-grid {
                grid-template-columns: 1fr;
            }

            .inquiry-action-stack {
                flex-direction: column;
            }

            .gujarat-map-stage {
                padding: 12px;
            }

            .luxury-map-frame {
                padding: 12px;
            }

            .gujarat-map-marker {
                width: 38px;
                height: 38px;
            }

            .gujarat-map-pin {
                width: 34px;
                height: 34px;
                font-size: 13px;
            }

            .gujarat-map-card {
                padding: 14px;
            }

            .gujarat-map-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575px) {
            .luxury-badge {
                margin-bottom: 14px;
                padding: 8px 14px;
                font-size: 10px;
                letter-spacing: 0.14em;
            }

            .contact-story-card--hero {
                padding: 18px;
            }

            .contact-story-title {
                font-size: 1.95rem !important;
                line-height: 1.15;
            }

            .contact-story-title-line {
                display: inline;
            }

            .contact-story-lead {
                margin-bottom: 18px;
                font-size: 14px;
                line-height: 1.75;
            }

            .contact-story-note {
                margin-bottom: 22px;
                font-size: 13px;
                line-height: 1.7;
            }

            .contact-story-meta-card {
                padding: 14px;
                min-height: auto;
            }

            .contact-story-meta-label {
                font-size: 10px;
            }

            .contact-story-meta-value {
                font-size: 13px;
            }

            .contact-form-panel,
            .experience-panel,
            .map-preview-panel {
                padding: 18px;
            }

            .contact-info-card {
                padding: 18px;
            }

            .inquiry-top-card {
                width: 100%;
                min-width: 0;
            }

            .contact-form-panel h2,
            .experience-panel h3,
            .map-preview-panel h3 {
                margin-bottom: 8px;
            }

            .contact-form-intro,
            .experience-panel p,
            .map-preview-panel p {
                font-size: 14px;
                line-height: 1.75;
            }

            .contact-panel-kicker {
                margin-bottom: 10px;
                font-size: 11px;
            }

            .contact-form-box h4 {
                font-size: 12px;
            }

            .inquiry-chip {
                width: 100%;
                justify-content: center;
            }

            .inquiry-service-item,
            .inquiry-access-item {
                padding: 14px;
            }

            .contact-hero-visual-card {
                border-radius: 22px;
            }

            .contact-hero-visual-card img {
                min-height: 260px;
            }
        }.offcanvas__top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  min-height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  line-height: 36px !important;
  border-radius: 50% !important;
  background-color: var(--theme) !important;
  position: static !important;
  top: auto !important;
  right: auto !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 9 !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close button {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white) !important;
  font-size: 14px !important;
  line-height: 1 !important;
}.header-main .header-right .call-item .icon {
  background-color: transparent !important;
  background: none !important;
  border-radius: 0 !important;
  width: auto !important;
  height: auto !important;
  line-height: normal !important;
  box-shadow: none !important;
  padding: 0 !important;
  border: none !important;
}

.header-main .header-right .call-item .icon i {
  color: var(--theme) !important;
  font-size: 18px !important;
}

.header-1:not(.sticky) .header-main .header-right .call-item .icon {
  background-color: transparent !important;
  background: none !important;
  width: auto !important;
  height: auto !important;
  border-radius: 0 !important;
}

.header-1:not(.sticky) .header-main .header-right .call-item .icon i {
  color: var(--theme) !important;
}.mobile-menu {
    background: transparent !important;
}

.mobile-menu .mean-container {
    background: transparent !important;
}

.mobile-menu .mean-nav {
    background: transparent !important;
    margin-top: 0 !important;
}

.mobile-menu .mean-nav ul {
    background: transparent !important;
}

.mobile-menu .mean-nav ul li a {
    color: #1c1c1c !important;
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
    padding: 10px 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    background: transparent !important;
}

.mobile-menu .mean-nav ul li a:hover {
    color: var(--theme) !important;
}.offcanvas__info .offcanvas__wrapper .offcanvas__content .offcanvas__top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 20px !important;
}

.offcanvas__info .offcanvas__wrapper .offcanvas__content .offcanvas__top .offcanvas__close {
    position: static !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    bottom: auto !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
    line-height: 1 !important;
    border-radius: 50% !important;
    background-color: #e67817 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    z-index: auto !important;
}

.offcanvas__info .offcanvas__wrapper .offcanvas__content .offcanvas__top .offcanvas__close button {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    cursor: pointer !important;
}

.offcanvas__info .offcanvas__wrapper .offcanvas__content .offcanvas__top .offcanvas__close i {
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1 !important;
    display: block !important;
}.contact-hub-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.contact-hub-wrapper .row {
  width: 100%;
  margin: 0;
}

.contact-hub-wrapper .row.g-0 {
  --bs-gutter-x: 0;
}

.contact-hub-info {
  padding: 60px 50px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.katargam-map-container {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hub-map {
  width: 100%;
  height: 100%;
  min-height: 500px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.contact-hub-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .contact-hub-wrapper .row {
    flex-direction: column;
  }
  
  .katargam-map-container {
    min-height: 400px;
  }
  
  .contact-hub-info {
    padding: 40px 30px;
  }
}

@media (max-width: 767px) {
  .contact-hub-info {
    padding: 30px 20px;
  }
  
  .katargam-map-container {
    min-height: 300px;
  }
}

.franchise-hero {
    position: relative;
    padding: 150px 0 100px;
    background-image: url('../img/home-1/hero/web.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.franchise-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}
.franchise-hero .container {
    position: relative;
    z-index: 2;
}
.franchise-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.franchise-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}
.franchise-qa-section {
    padding: 80px 0;
    background-color: #06060a;
    color: #fff;
}
.franchise-qa-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: #FFD700;
}
.qa-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(230, 120, 23, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s;
    height: 100%;
}
.qa-item:hover {
    border-color: #e67817;
}
.qa-item h4 {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.qa-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}
.franchise-form-section {
    padding: 80px 0;
    background: radial-gradient(circle at top left, rgba(230, 120, 23, 0.12), transparent 45%), #0a0a0a;
}
.franchise-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #000;
    border: 1px solid rgba(230, 120, 23, 0.2);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.franchise-form-container h2 {
    color: #FFD700;
    text-align: center;
    margin-bottom: 30px;
}
.franchise-form-container .lux-input-group {
    margin-bottom: 20px;
}
.franchise-form-container .clean-lux-input {
    width: 100%;
    background: #111 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 15px 20px;
    border-radius: 10px;
}
.franchise-form-container .clean-lux-input:focus {
    border-color: #e67817 !important;
    outline: none;
}
.franchise-form-container .lux-input-label-elite {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .franchise-hero h1 {
        font-size: 2.5rem;
    }
    .franchise-form-container {
        padding: 30px 20px;
    }
}
