@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&amp;display=swap');

:root {
  --primary-color: #C5A059;
  --secondary-color: #2a2d38;
  --secondary-color-light: #242833;
  --body-color: #070707;
  --light: #f4f1ea;
  --black: #0a0c14;
  --red: #343232;
  --maroon: #0d6e61da;
  --white: #ffffff;
  --facebook: #4267B2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #FF0000;
  --whatsapp: #25D366;
  --instagram: #c92bb7;
  --kk: #0a0402;
  --luxe-gold: #C5A059;
  --luxe-gold-muted: rgba(197, 160, 89, 0.35);
  --luxe-panel: rgba(0, 0, 0, 0.58);
  --luxe-ink: #0a0a12;
  --luxe-bg: #0a0c14;
  --luxe-bg-elevated: #10131c;
  --luxe-surface: #161a24;
  --luxe-line: rgba(197, 160, 89, 0.22);
  --loc-teal: #3d7a7a;
  --loc-teal-light: #5a9d9d;
}

html{
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  color: rgba(255, 255, 255, 0.9);
  font: 400 1rem "Rubik", sans-serif;
  overflow-x: hidden;
  background-color: var(--luxe-bg);
  margin: 0;
  padding: 0;
  min-height: 100%;
  min-height: 100dvh;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Playfair Display", Georgia, serif;
}

.theme-section {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  background: var(--luxe-bg);
}

.theme-section--elevated {
  background: linear-gradient(165deg, var(--luxe-bg-elevated) 0%, var(--luxe-bg) 48%, #0d0f18 100%);
}

.theme-section--elevated::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(197, 160, 89, 0.08), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.theme-section > .container,
.theme-section > .container-fluid {
  position: relative;
  z-index: 1;
}

.theme-section--parallax {
  position: relative;
  color: #fff;
}

.theme-section--parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6, 8, 18, 0.88) 0%, rgba(6, 8, 18, 0.55) 45%, rgba(6, 8, 18, 0.35) 100%);
  z-index: 0;
  pointer-events: none;
}

.theme-section--parallax > .container {
  position: relative;
  z-index: 1;
}

.text-body-luxe {
  color: rgba(255, 255, 255, 0.86) !important;
}

.site-footer-legal {
  background: linear-gradient(180deg, #080a10 0%, #05060a 100%);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid var(--luxe-line);
}

.site-footer-legal a {
  color: var(--luxe-gold);
}

.site-footer-legal a:hover {
  color: #e4c77a;
}

.heading {
  display: table;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(90deg, var(--luxe-gold), rgba(197, 160, 89, 0.35));
  border-radius: 1px;
  opacity: 0.95;
}

.heading.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

.heading.border-bottom{
  border-bottom-width: 2px !important;
}

svg:not([fill]) {
  fill: currentColor;
  stroke: currentColor;
}

.table td,
.table th{
  padding: 11px;
}
.table td:hover a{
  color: #000 !important;
}

p {
  line-height: 19px;
  margin-bottom: 7px;
  letter-spacing: 0.5px;
  font-family: "Rubik", sans-serif;
}

.padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
}

img, video, iframe {
  width: 100%;
  display: block;
}

.gap-row{
  row-gap: 30px;
}

.gap-form-row{
  row-gap: 10px;
}

.object-cover {
  object-fit: cover;
}

.container-fluid{
    padding-left: 2rem;
    padding-right: 2rem;
}

.rounded {
  border-radius: 5px !important;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

/*header*/
.header {
  width: 100%;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  color: #ffffff;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  transition: all 300ms ease-in-out;
  max-height: 100px;
  background: rgba(12, 14, 26, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header.fixed{
  background: rgba(12, 14, 26, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: none;
  color: #ffffff;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.header:not(.fixed) a{
  color: rgba(255, 255, 255, 0.92);
}
.header:not(.fixed):hover a{
  color: #fff;
}
.header.fixed a{
  color: rgba(255, 255, 255, 0.92);
}
.header.fixed:hover a{
  color: #fff;
}

.logo {
	margin-top: 0px;
  position: relative;
  left: 1rem;
  padding: 0;
  min-height: 1px;
  transition: all 300ms ease-in-out;
  z-index: 2;
  max-width: 363px;
  display: flex;
}

.logo small{
  font-size: 54%;
}

/* .header.fixed .logo img{
  padding: 0 10px;
} */

.header .nav > ul {
  display: flex;
  align-items: center;
  position: relative;
}

.header .nav > ul > li > a {
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0 10px;
  position: relative;
  transition: all 300ms ease-in-out;
  padding: 1rem;
  z-index: 1;
}

.header .nav > ul > li:hover > a {
  color: var(--luxe-gold);
}

.header .nav > ul > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid var(--secondary-color);
  transition: all 300ms ease-in-out;
  z-index: -1;
}

.header .nav ul li:hover > a::before {
  width: 100%;
}

.header .topCTC{
  display: flex;
  background-color: var(--primary-color) !important;
  transition: all 300ms ease-in-out;
}

.header.fixed .topCTC,
.header:hover .topCTC{
  background-color: var(--primary-color) !important;
}

.header .topCTC a,.header .topCTC a:hover{
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0px 1rem;
}

.header .topCTC a:last-child{
  border-left: 1px solid #fff;
}

.header .topCTC a i{
  display: flex;
  align-items: center;
}

.header.fixed .menuBtn span::before {
  background: var(--primary-color);
}

.menuBtn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
}

.menuBtn div {
  position: relative;
  width: 50%;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  transition: all 300ms ease-in-out;
}

.menuBtn span {
  display: block;
  position: relative;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
/* Designed & Developed by Sami from ECIS */

.menuBtn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn.closeMenuBtn span#menuLine1 {
  -webkit-transform: rotate(45deg) translate(4px, 4px);
  transform: rotate(45deg) translate(4px, 4px);
}

.menuBtn.closeMenuBtn span#menuLine2 {
  right: 100px;
}

.menuBtn.closeMenuBtn span#menuLine3 {
  -webkit-transform: rotate(-45deg) translate(4px, -5px);
  transform: rotate(-45deg) translate(4px, -5px);
}

.menuContainer {
  position: fixed;
  inset: 0;
  padding-top: 61px;
  z-index: 996;
  background-color: rgb(0 123 255 / 13%);
  backdrop-filter: blur(5px);
  display: none;
}

.menuContainer .inner {
  padding: 5px 15px;
  width: 100%;
  visibility: hidden;
  background: var(--primary-color);
  background: radial-gradient(circle at 50% -10%, var(--secondary-color), var(--primary-color));
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 16%);
  transition: all 300ms ease-in-out;
}

.header.fixed + .menuContainer {
  padding-top: calc(1rem + 30px);
}

.menuContainer.active .inner {
  visibility: visible;
}

.menuContainer a{
  color: #fff;
  transition: all 300ms ease-in-out;
}

.mainMenu li:not(:last-child) a{
  border-bottom: 1px solid rgb(255 255 255 / 15%);
}

.mainMenu a{
  padding: 10px 0;
  font-weight: 700;
  display: block;
  position: relative;
}

.mainMenu li.active > a,
.mainMenu li:hover > a{
  padding: 10px;
  background-color: #fff;
  color: var(--primary-color);
}

.mainMenu a i{
  font-size: 75%;
  position: absolute;
  right: 0;
  top: 50%;
  line-height: 0;
  transition: all 300ms ease-in-out;
}

.mainMenu li.active > a i,
.mainMenu li:hover > a i{
  right: 10px;
}

.mainMenu li.active > a i{
  transform: rotate(540deg);
}

.menuDrop{
  padding: 5px 15px;
  margin-bottom: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  display: none;
}
.mainMenu ul ul li:last-child a{
	border-bottom: 0;
}
/*header*/

main {
  margin: 0;
  padding: 0;
}

/* sticky form */
.enquiryBtn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  display: none;
}
.enquiryBtn i {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-color), #210c02);
  color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 40%);
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.enquiryBtn i:hover {
  background: linear-gradient(2255deg, var(--primary-color), var(--secondary-color));
}

.stickyForm {
  width: 300px;
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  padding: 1.25rem;
  background-color: #fff;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
  z-index: 99;
}

.sideImg .inner::before,
.iconsContainer .iconBox .in::before,
.location-advantages .inner::before{
  content: '';
  position: absolute;
  inset: -9px;
  border:  1px solid rgb(106 106 106 / 30%);
}
.fpContainer .fbBox .outer::before{
  content: '';
  position: absolute;
  inset: -9px;
  border:  1px solid rgb(106 106 106 / 30%);
}
.form-close {
  position: absolute;
  right: -2px;
  top: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: maroon;
  color: #fff;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.form-close:hover {
  background: var(--secondary-color);
}

.stickyForm .form-tag{
  font-size: 14px;
}

.stickyForm h6 {
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
  color: var(--body-color);
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.stickyForm .form-group {
  margin-bottom: 10px;
}
.stickyForm .form-control,
.modal-body .form-control {
  border-bottom: 2px solid #eaeaea;
  background-color: #f1f1f1;
  color: var(--body-color);
  padding: 8px 10px;
  font-size: 14px;
}
/* sticky form */

/* overview */
.overview-container{
  background: linear-gradient(155deg, var(--luxe-bg-elevated) 0%, var(--luxe-bg) 45%, #121018 100%);
}

.overview-container::before{
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 15% 10%, rgba(197, 160, 89, 0.12), transparent 52%);
  z-index: 0;
  pointer-events: none;
  clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  opacity: 0.9;
}

.sideImg .inner{
  padding: 1.25rem;
  background: var(--luxe-surface);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  position: relative;
  border: 1px solid var(--luxe-line);
  border-radius: 14px 0 14px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.statsBox .in{
  height: 100%;
 background-color: #0a0402;
  border-radius: 10px;
  padding: 10px;
}
/* overview */
.statsBox .in h4{
 color:#fff !important;
 
}
/* amenities */
.iconsContainer .iconBox{
  height: auto;
  padding: 10px;
}
.iconsContainer .iconBox .in .img-fluid{
  background: white;
  padding: 20px;
  border-radius: 100%;
}
.iconsContainer .iconBox .in {
  height: 100%;
  padding: 2rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, background 0.35s ease, border-color 0.35s ease;
  background: linear-gradient(180deg, var(--luxe-surface) 0%, #12151f 100%);
  border: 1px solid var(--luxe-line);
  border-radius: 14px 0 14px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  position: relative;
}
.iconsContainer .iconBox .in::before{
  border-color: rgba(197, 160, 89, 0.25);
}




.iconsContainer .iconBox .in:hover {
  background: rgba(197, 160, 89, 0.1) !important;
  border-color: rgba(197, 160, 89, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}


.iconBox .in i {
  width: 30px;
}

.iconBox .in img {
  width: 100%;
}

.iconBox .in h6 {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.amenities-cta-card {
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.18) 0%, var(--luxe-surface) 55%) !important;
  border: 1px solid var(--luxe-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px 0 14px 0;
}

.amenities-cta-card h6 {
  color: var(--luxe-gold) !important;
}
/* amenities */
.black{
  color: white;
  background-color: black;
  padding: 10px;
  font-size: 20px;
}
/* floor plans */
.hm-fp-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/lining-bg.png) center / 35%;
  z-index: -1;
  opacity: .06;
  filter: opacity(0.6);
}
.theme-section .flooromage {
  border-radius: 12px 0 12px 0;
  border: 1px solid var(--luxe-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.theme-section .swiper-slide a:hover .flooromage,
.theme-section .flooromage:hover {
  transform: scale(1.02);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.48);
}

#floorplans .floor-plan-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 12px 0 12px 0;
  border: 1px solid var(--luxe-line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  text-decoration: none !important;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

#floorplans .floor-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.48);
}

#floorplans .floor-plan-card__media {
  display: block;
  overflow: hidden;
}

#floorplans .floor-plan-card__media .flooromage {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-bottom: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  filter: blur(14px);
  transform: scale(1.08);
  transition: filter 0.35s ease, transform 0.45s ease;
}

#floorplans .floor-plan-card:hover .floor-plan-card__media .flooromage {
  filter: blur(11px);
  transform: scale(1.1);
}

#floorplans .floor-plan-card__action {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background:
    radial-gradient(ellipse 85% 70% at 50% 50%, rgba(10, 12, 20, 0.18) 0%, rgba(10, 12, 20, 0.62) 100%),
    linear-gradient(180deg, rgba(197, 160, 89, 0.08) 0%, rgba(10, 12, 20, 0.42) 100%);
}

#floorplans .floor-plan-card__cta {
  width: min(100%, 18.5rem);
  padding: 1.15rem 1.1rem 1rem;
  border: 1px solid rgba(197, 160, 89, 0.42);
  border-radius: 14px 0 14px 0;
  background: rgba(10, 12, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

#floorplans .floor-plan-card:hover .floor-plan-card__cta {
  transform: translateY(-3px);
  border-color: var(--luxe-gold);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(197, 160, 89, 0.18);
}

#floorplans .floor-plan-card__eyebrow {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Rubik", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.88);
}

#floorplans .floor-plan-card__title {
  display: block;
  margin: 0 0 0.95rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

#floorplans .floor-plan-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.82rem 1rem;
  border-radius: 3px;
  border: 1px solid var(--luxe-gold);
  background: linear-gradient(165deg, rgba(197, 160, 89, 0.24) 0%, rgba(197, 160, 89, 0.08) 100%);
  color: var(--luxe-gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

#floorplans .floor-plan-card__btn-label {
  font-family: "Rubik", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

#floorplans .floor-plan-card__btn i {
  font-size: 0.78rem;
  transition: transform 0.25s ease;
}

#floorplans .floor-plan-card:hover .floor-plan-card__btn {
  color: var(--luxe-ink);
  background: var(--luxe-gold);
  border-color: var(--luxe-gold);
  box-shadow: 0 12px 32px rgba(197, 160, 89, 0.35);
}

#floorplans .floor-plan-card:hover .floor-plan-card__btn i {
  transform: translateX(3px);
}
.gallery-swiper-wrap {
  margin-top: 0.35rem;
}

.gallery-swiper-wrap .gallerySwiper {
  padding-bottom: 0.25rem;
}

.gallery-swiper-wrap .gallerySwiper .swiper-slide {
  height: auto;
}

.gallery-swiper-wrap .swiper-button-next {
  right: 8px;
}

.gallery-swiper-wrap .swiper-button-prev {
  left: 8px;
}

.fpContainer .fbBox .outer {
  transition: all 300ms ease-in-out;
  position: relative;
}

.fpContainer .fbBox .inner {
  padding: 1rem;
  background: #343232;
  transition: all 300ms ease-in-out;
  position: relative;
  height: 100%;
  border-radius: 0px 0px 15px 0px;
}
.fpContainer .fbBox .outer::before{
  border-color: rgb(0 0 0 / 40%);
  border-radius: 15px 0px;
}
.inner .col-sm-7 ,.inner .col-sm-5{
  padding-right: 5px;
  padding-left: 5px;
}
.fpContainer .fbBox .outer:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 24%);
  color: var(--light);
  border-radius: 15px 0px;
}

.planBase {
  margin: 0.6rem;
}
.planBase p b{
  line-height: 26px;
  font-size: 20px;
}
.planBase ul li{
  line-height: 26px;
  font-size: 16px;

}
.site-footer-legal .font-10 a,
.site-footer-legal .font-10 a:hover {
  color: var(--luxe-gold);
}

.font-10 a,.font-10 a:hover{
  color: black;
}
.font-10{
  font-size: 12px;
  line-height: 30px;
}
.text-center{
  text-align: center;
  display: block;
}
.flex{
  padding-top: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fpDetails {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fpDetails .icon {
  width: 22px;
}
.line-btm{
  border-bottom: 1px solid var(--maroon);
}
.planBase .fpDetails h6 {
  margin-bottom: 0;
  font-weight: 700;
  line-height: 30px;
}

.fpContainer .fbBox .img-fluid {
  overflow: hidden;
  border: 1px solid rgb(0 0 0 / 10%);
}

.fpContainer .fbBox img {
  filter: blur(3px);
}
.fpContainer .fbBox {
  margin-bottom: 10px;
}
.fpContainer .fbBox span {
  display: block;
}
/* floor plans */

/* Gallery */
.reflection {
  -webkit-box-reflect: below -76px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
}

.charSlide{
  width: 70%;
}

.charSlide .imgBox{
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.charSlide img{
  object-fit: cover;
}

.charSlide .caption{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: max-content;
  
  font-size: 1.75rem;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 20%);
  z-index: 1;
  text-align: center;
  -webkit-box-reflect: below -1rem linear-gradient(to bottom, transparent 25%, rgba(0,0,0,0.4));
  display: none;
}
/* Gallery */

/* Location */
.hm-location-section::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/map-lining.png) center right / cover no-repeat;
  opacity: 0.05;
  z-index: -1;
}
.map {
  position: relative;
}

#location .map iframe,
#location .location-map-iframe {
  display: block;
  width: 100%;
  border-radius: 12px 0 12px 0 !important;
  border: 1px solid var(--luxe-line) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  min-height: 360px;
}

.location-advantages .inner{
  height: auto;
  min-height: 100%;
  padding: 0.85rem 0.75rem;
  background: var(--luxe-surface);
  position: relative;
  border: 1px solid var(--luxe-line);
  border-radius: 12px 0 12px 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.location-advantages .inner::before{
  border-color: rgba(181, 157, 92, 0.725);
}

.location-advantages ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  color: var(--light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-advantages ul li .loc-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-advantages ul li .loc-row img {
  flex: 0 0 35px;
  max-width: 35px;
  filter: grayscale(1) opacity(0.5);
}

.location-advantages ul li .loc-row p {
  margin-bottom: 0;
}

.location-advantages ul li .loc-dist {
}

.location-advantages ul li .loc-dist small {
  font-size: 13px;
  margin-left: 5px;
}

/* Location details (brochure-style lists) */
.loc-details {
  text-align: center;
}

.loc-details__intro {
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
}

.loc-details__metro {
  margin-bottom: 1.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.22);
}

.loc-details__kicker {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--loc-teal-light);
  font-size: 0.78rem;
  line-height: 1.45;
  margin: 0 0 0.45rem;
}

.loc-details__metro-note {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 0.68rem;
  line-height: 1.5;
  color: var(--loc-teal);
  margin: 0;
}

.loc-details__block {
  margin-bottom: 1.35rem;
}

.loc-details__cat {
  font-family: "Rubik", sans-serif !important;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--loc-teal-light);
  margin: 0 0 0.5rem;
}

.loc-details__list {
  margin: 0;
  padding: 0;
}

.location-advantages .loc-details .loc-details__list > li {
  display: block;
  text-align: center;
  padding: 0.4rem 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Rubik", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
  letter-spacing: 0.02em;
}

.location-advantages .loc-details .loc-details__list > li:last-child {
  border-bottom: none;
}

.loc-details .schedule {
  margin-top: 1.25rem;
}

#location.location-section--compact {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

#location.location-section--compact .heading {
  margin-bottom: 1.25rem;
}

.location-map-wrap {
  position: relative;
  width: 100%;
  border-radius: 12px 0 12px 0;
  overflow: hidden;
  border: 1px solid var(--luxe-line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  background: #0a0c14;
}

#location.location-section--compact .location-map-iframe {
  min-height: 220px;
  height: 200px;
  box-shadow: none;
  border: 0 !important;
  border-radius: 0 !important;
}

.loc-details__intro--map {
  text-align: left;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.78);
}

.loc-details--compact {
  text-align: left;
}

.loc-details--compact .loc-details__metro {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
}

.loc-details--compact .loc-details__block {
  margin-bottom: 0.85rem;
}

.loc-details--compact .loc-details__cat {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.location-advantages .loc-details--compact .loc-details__list > li {
  text-align: left;
  font-size: 0.78rem;
  padding: 0.28rem 0;
}

.loc-details--compact .schedule {
  margin-top: 0;
}

#location.location-section--compact .schedule .button {
  width: 100%;
  max-width: 100%;
  display: block;
}

@media (min-width: 992px) {
  #location.location-section--compact .location-map-iframe {
    height: 100%;
    min-height: 360px;
    max-height: 400px;
  }

  #location.location-section--compact .location-map-wrap {
    min-height: 360px;
    max-height: 400px;
  }
}

/* Location */


.viewmore {
  width: 100%;
  margin-top: 1.25rem;
}

.viewmore .button {
  width: max-content;
  text-transform: uppercase;
  color: var(--secondary-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
}
.viewmore .button:hover{
  gap: 15px;
}

.viewmore .button i {
  width: 30px;
  color: var(--secondary-color);
}

.viewmore .button:hover, .viewmore .button:hover i {
  color: #fff;
}

.viewmore .button.text-primary:hover, .viewmore .button.text-primary:hover i{
  color: #fff !important;
}

.viewmore .button.text-primary i{
  color: var(--primary-color);
}

.watermark{
  position: absolute;
  height: 80%;
  top: 50%;
  opacity: 0.5;
  z-index: -1;
}

.watermark.toright{
  right: 0;
  transform: translate(3%,-50%);
}

.watermark.toleft{
  left: 0;
  transform: translate(-50%,-35%);
}

.watermark.lg{
  height: auto;
  width: 60%;
}

.watermark img{
  height: 100%;
  width: auto;
}

/* Designed & Developed by Sami from ECIS */

.heading h2,
.heading h4,
.heading h5,
.heading h6 {
  display: block;
}

.heading .h1 {
  color: var(--light);
}

.heading h3 {
  font-weight: 500;
  font-size: 2vw;
}

.heading h6 {
  font-weight: 400;
  letter-spacing: 2px;
}

.text-serif{
  
}
.disc label ,.disc label a{
  display: contents;
  font-size: 12px;
  color: #a1a1a1;

}
.disc input{
 display: inline-block;
 width: 10px;
 height: 10px;
 color: #a1a1a1;
}
.text-sans{
  font-family: "Rubik", sans-serif;
}

.text-primary{
  color: var(--primary-color) !important;
}
.text-secondary{
	color:var(--light) !important;
}
.fbBox:hover .readmore .button {
  background: var(--luxe-gold);
  color: var(--luxe-ink);
  border-color: var(--luxe-gold);
}
.schedule .button,
.schedule button {
  cursor: pointer;
  width: auto;
  min-width: 12rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.9rem 1.5rem;
  border-radius: 3px;
  text-align: center;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  background: linear-gradient(165deg, rgba(197, 160, 89, 0.95) 0%, rgba(197, 160, 89, 0.75) 100%);
  color: var(--luxe-ink);
  border: 1px solid var(--luxe-gold);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.schedule .button:hover,
.schedule button:hover {
  color: var(--luxe-gold);
  background: transparent;
  border-color: var(--luxe-gold);
  transform: translateY(-2px);
}
.bg-primary{
  background-color: var(--primary-color) !important;
}

.bg-secondary{
  background-color: #f0f0f0 !important;
}
.bg-secondary-light{
  background-color: var(--secondary-color-light);
}

.bg-light{
    background-color: var(--light) !important;
}

.bg-image{
  background: center / cover no-repeat fixed;
}

.bg-image::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(0 0 0 / 70%);
  z-index: -1;
}

.bg-image.bg-secondary{
  background-attachment: initial;
}

.bg-image.bg-secondary::before{
  background-color: transparent;
}

.scroller{
  overflow: auto;
}

.scroller::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.scroller::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--light);
  border-radius: 10px;
}

/* Handle */
.scroller::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

/* Handle on hover */
.scroller::-webkit-scrollbar-thumb:hover {
  background: #000;
}

.readmore {
  width: 100%;
  margin-top: 2rem;
}

.readmore.d-flex{
  gap: 2px;
}
.readmore .button i {
  margin-right: 0.45rem;
  font-size: 0.9em;
}

/* Luxe CTA buttons (forms, modals, anchors) */
.readmore .button,
.readmore1 .button,
.readmore button[type="submit"].button,
button.mx-auto.button,
a.button:not(.whats-app-click) {
  cursor: pointer;
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: "Rubik", sans-serif;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1.35;
  padding: 0.9rem 1.65rem;
  border-radius: 3px;
  border: 1px solid var(--luxe-gold);
  background: linear-gradient(165deg, rgba(197, 160, 89, 0.22) 0%, rgba(197, 160, 89, 0.06) 100%);
  color: var(--luxe-gold);
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.readmore1 .button {
  width: auto;
  min-width: 11rem;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(165deg, rgba(197, 160, 89, 0.32) 0%, rgba(197, 160, 89, 0.1) 100%);
}

.readmore button.button {
  width: 100%;
  max-width: 100%;
  display: block;
  box-sizing: border-box;
}

.readmore .button:hover,
.readmore1 .button:hover,
.readmore button[type="submit"].button:hover,
button.mx-auto.button:hover,
a.button:not(.whats-app-click):hover {
  color: var(--luxe-ink);
  background: var(--luxe-gold);
  border-color: var(--luxe-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(197, 160, 89, 0.35);
}

.readmore .button.mw-auto{
  min-width: 1px;
  padding: 10px;
}

.readmore .button.text-white{
  border-color: #fff;
}

.readmore .button.text-white:hover {
  color: var(--primary-color) !important;
  background-color: #fff;
  border-color: transparent;
}

.readmore .button.solid.white:hover,
.readmore .button.solid {
  background-color: var(--primary-color);
  color: var(--light);
  border: none;
}

.readmore .button.solid.white,
.readmore .button.solid:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
}
.readmore .button.bg-secondary {
  border: none;
}
.readmore .button.bg-secondary:hover {
  background-color: var(--primary-color) !important;
}

.controls {
  position: absolute;
  width: 110px;
  height: 40px;
  right: 10px;
  bottom: 10px;
  z-index: 9;
}

.controls a {
  position: static;
  display: table;
  width: 100%;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  text-align: center;
  color: var(--primary-color);
  font-size: 13px;
  border-bottom: 1px solid rgb(0 0 0 / 20%);
  opacity: 1;
}

.controls a:last-child {
  border-bottom: none;
}

.controls a:focus,
.controls a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
}

.multiply{
  mix-blend-mode: multiply;
}

.position-relative{
  z-index: 1;
}
/* Swiper navigation — luxe (gallery, floor plans, amenities) */
.theme-section .swiper-button-next,
.theme-section .swiper-button-prev,
.swiper-button-next,
.swiper-button-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: -24px;
  border-radius: 50%;
  background: rgba(10, 12, 20, 0.78);
  background-image: none;
  border: 1px solid var(--luxe-line);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--luxe-gold);
  --swiper-navigation-color: var(--luxe-gold);
  --swiper-navigation-size: 22px;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease, opacity 0.2s ease;
}

.theme-section .swiper-button-next:hover,
.theme-section .swiper-button-prev:hover,
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: rgba(197, 160, 89, 0.16);
  border-color: rgba(197, 160, 89, 0.55);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(197, 160, 89, 0.22);
  transform: scale(1.06);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  display: block;
  font-size: var(--swiper-navigation-size, 22px);
  font-weight: 700;
  color: var(--luxe-gold);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.32;
  cursor: not-allowed;
  transform: none;
  pointer-events: none;
}

.swiper-button-next:focus-visible,
.swiper-button-prev:focus-visible {
  outline: 2px solid var(--luxe-gold);
  outline-offset: 3px;
}

.swiper-button-next.sm,
.swiper-button-prev.sm {
  width: 36px;
  height: 36px;
  margin-top: -18px;
  background-image: none;
  --swiper-navigation-size: 16px;
}

.swiper-button-next.sm:after,
.swiper-button-prev.sm:after {
  font-size: var(--swiper-navigation-size, 16px);
}
.section-one-bg {
  background-attachment: fixed;
  background-image: url('../images/gallery/g4.webp');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  }
 
  .bg-line {
  border: 2px solid rgb(255, 255, 255);
  padding: 20px;
  }
  .section-one-padding {
    padding: 25px;
    background: rgba(10, 12, 20, 0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--luxe-line);
    border-radius: 14px 0 14px 0;
    color: rgba(255, 255, 255, 0.92);
}
.section-one-padding h2,
.section-one-padding h3 {
  color: #fff;
}

.section-one-padding h3 {
  color: var(--luxe-gold);
}

.section-one-padding hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(197, 160, 89, 0.28);
}

.section-one-bg .highlights-layout {
  margin-left: 0;
  margin-right: 0;
}

@media (min-width: 768px) {
  .section-one-bg .highlights-about {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .section-one-bg .highlights-pricing-col {
    flex: 0 0 60%;
    max-width: 60%;
  }
}

.section-one-bg .highlights-about .section-one-padding {
  max-width: 100%;
}

.section-one-bg .highlights-pricing {
  height: 100%;
}

.section-one-bg .highlights-pricing-col .section-one-padding {
  padding: 1.75rem 1.5rem;
}

.section-one-bg .highlights-pricing .pricing-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}

.section-one-bg .highlights-pricing .pricing-cards > [class*="col-"] {
  flex: 0 0 auto;
  width: min(48%, 19.5rem);
  max-width: 19.5rem;
  padding-left: 0.45rem;
  padding-right: 0.45rem;
}

.section-one-bg .highlights-pricing .pricing-card {
  padding: 1.9rem 1.6rem 1.55rem;
}

.section-one-bg .highlights-pricing .pricing-card__type {
  font-size: 1.55rem;
}

.section-one-bg .highlights-pricing .pricing-card__value {
  font-size: 1.15rem;
}

.section-one-bg .highlights-pricing .pricing-card__price {
  font-size: 1.35rem;
}

.section-one-bg .highlights-pricing .pricing-card__cta {
  margin-top: 0.85rem;
}

.section-one-bg .highlights-pricing .pricing-card__cta .button {
  width: 100%;
  display: block;
  box-sizing: border-box;
  font-size: 0.68rem;
  padding: 0.75rem 0.85rem;
}

@media (max-width: 767px) {
  .section-one-bg .highlights-pricing .pricing-cards > [class*="col-"] {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.fs-16 {
  font-size: 16px;
  margin-bottom: 10px;
}

.pb-50 {
    padding-bottom: 50px;
}
.pt-50 {
  padding-top: 50px;
}

.topBtn{
  top: 25%;
}

.bottomBtn{
  top: 80%;
}

.heading .d-flex{
  gap: 10px;
}
.heading .swiper-button-next,
.heading .swiper-button-prev {
  position: static;
  margin-top: 0;
  flex-shrink: 0;
}

.bottom-control{
  top: calc(100% - 1.75rem);
}

.bottom-control.sm{
  top: calc(100% - .5rem);
}

.bottom-control.swiper-button-next {
  right: calc(50% - 52px);
}
.bottom-control.swiper-button-prev {
  left: calc(50% - 52px);
}

.bottom-control.swiper-button-next.sm {
  right: calc(50% - 42px);
}
.bottom-control.swiper-button-prev.sm {
  left: calc(50% - 42px);
}

.swiper-pagination{
  bottom: 0 !important;
}

.swiper-pagination-bullet-active{
  background-color: var(--primary-color);
  width: 20px;
  border-radius: 10px;
}
/* custom swiper controls */

.footer-enquiryBtn {
  border-radius: 10px;
  position: fixed;
  bottom: 2px;
  left: 2px;
  right: 2px;
  
  justify-content: space-between;
  z-index: 99;
  background-color: var(--secondary-color);
  box-shadow: 0 0 10px rgb(0 0 0 / 15%);
  text-align: center;
}
.footer-enquiryBtn a {
  color: #fff;
  text-align: center;
  display: block;
  padding: 8px 5px;
  border-radius: 0 10px 10px 0;
  border: 1px solid rgb(0 0 0 / 15%);
  border-left: 0;
}
.footer-enquiryBtn a.whatsCall {
  background: linear-gradient(45deg,#0db634,#015c16);
  border: 0;
  border-radius: 10px;
  color: #fff;
}

.button-top {
  background: rgba(10, 12, 20, 0.75);
  border: 1px solid var(--luxe-gold-muted);
  position: fixed;
  left: 20px;
  bottom: -40px;
  color: var(--luxe-gold);
  font-size: 13px;
  opacity: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  z-index: 99;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.button-top:hover {
  background: var(--luxe-gold);
  color: var(--luxe-ink);
  border-color: var(--luxe-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(197, 160, 89, 0.35);
}
.appbtn {
  font-size: 15px;
    padding: 11px 16px;
    border: none;
    width: 49%;
    border-radius: 10px;
    background: #0a0402;
    color: white;
    margin: 0 auto;
}
/*Footer*/

.flip-x{
  transform: rotateY(180deg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group>div {
  margin-top: 15px;
}

.form-group label {
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 500;
}

.form-control {
  border: none;
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  background: none;
  outline: none;
  padding-left: 0;
  padding-top: 0;
}

.form-control[readonly] {
  background: none;
}

.form-control.form-control-dark{
  border-bottom-color: rgb(255 255 255 / 15%);
  color: #fff;
}

select.form-control.form-control-dark{
  background-color: var(--primary-color);
}

.form-control.form-control-dark::placeholder{
  color: #8f8f8f;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: var(--primary-color);
  background: none;
}

/* customize modal */
.modal-backdrop.show {
  opacity: 1;
  background: rgb(0 10 12 / 95%);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: #fff;
  box-shadow: 0 8px 32px 0 rgba(0 0 0 / 20%);
  border-radius: 1rem;
}

button.close {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  opacity: 1;
  text-shadow: none;
}

.close:not(:disabled):not(.disabled):focus,
.close:not(:disabled):not(.disabled):hover {
  opacity: 1;
  background-color: #0d6e61;
  color: #fff;
}

.modal-content {
  background-color: #fff;
  color: var(--body-color);
  border: none;
}
.modal-dialog {
 max-width: 423px;;
}
.modal-content .modal-header {
  padding: 0;
  border: none;
}
.modal-content button.close {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  color: var(--secondary-color-light);
  background-color: var(--secondary-color);
  opacity: 1;
}
.modal-header .close {
  color: #fff;
}
.modal-header {
  background: none;
  border: none;
}
.no-gutters .col-md-6:first-child {
  background: var(--secondary-color);
  border-radius: 1rem;
}

.modal-logo .inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.modal-logo .bhk {
  font-size: 1rem;
}

.modal-logo .bhk span {
  font-size: 200%;
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--primary-color);
  line-height: 1;
}

.modal-logo .price {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  border: solid rgb(255 255 255 / 20%);
  border-width: 1px 0;
  font-size: 1rem;
}

.modal-logo .price span {
  font-weight: 700;
  color: var(--vibrant-color);
  font-size: 200%;
  line-height: 1;
}

.modal-body {
  padding: 1.5rem;
}
/* customize modal */

/*transformation Animation*/
.leftTranslate {
  -webkit-transform: translate(-200px, 0);
  transform: translate(-200px, 0);
  opacity: 0;
  -webkit-transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
}

.rightTranslate {
  -webkit-transform: translate(200px, 0);
  transform: translate(200px, 0);
  opacity: 0;
  -webkit-transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
}

.topTranslate {
  -webkit-transform: translate(0, -200px);
  transform: translate(0, -200px);
  opacity: 0;
  -webkit-transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
}

.bottomTranslate {
  -webkit-transform: translate(0, 200px);
  transform: translate(0, 200px);
  opacity: 0;
  -webkit-transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
}

.doneTranslate {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .leftTranslate,
  .rightTranslate,
  .topTranslate,
  .bottomTranslate,
  .doneTranslate {
    transition-duration: 0.15s !important;
  }
}

.fadeOut {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 1000ms ease-in-out;
  transition: all 1000ms ease-in-out;
}

.fadeIn {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.zoomOut{
  transform: scaleX(0);
  transform-origin: left;
  transition: all .5s ease-in-out;
}

.zoomIn{
  transform: scale(.5);
}
/*transformation Animation*/
h3 {
  font-size: 22px;
}
.jkl{background: #0a0402;
  padding: 5px;
  border-radius: 10px;
  font-size: 13px;
  color: #fff;
  margin-top: 3px;}

  /*Price List Codes Start From Here*/

.pricelist-container .priceboxesdiv{flex-wrap: wrap;gap: 59px 0;}
.pricelist-container .commonheading{margin-bottom: 55px;}
.pricelist-container .price_list_box{background: var(--secondary-color-light) url(../images/icons/row-bgimage-7.png);color:var(--white);padding: 20px 10px 15px;position:relative;overflow: hidden;background-repeat: no-repeat;background-size: cover;color: var(--secondary-color);  border-radius: 15px 0px 0px 0px;}
.pricelist-container .property-type{font-size: 24px;position: absolute;top: 8px;right: 17px;border-bottom: 1px solid var(--secondary-color);}
.pricelist-container .pricelist_heading{font-size: 26px;font-family: "sans-serif";LETTER-SPACING: normal;  margin-top: 10px;  margin-bottom: 10px;    text-align: center;}
.pricelist-container .pricetext{margin-bottom: 25px; padding-bottom: 15px;}
.pricelist-container .pricetext span, .pricelist-container .pricetext h4, .pricelist-container .sizediv, .pricelist-container .sizediv span{font-size: 21px;}
.pricelist-container .sizediv{    padding: 9px 0;
  margin-bottom: 5px;
}

.pricing-cards {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.pricing-cards > [class*="col-"] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.pricing-card {
  background: #fff;
  color: var(--body-color);
  border-radius: 15px 0 15px 0;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  border: 1px solid var(--luxe-line);
  height: 100%;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.pricing-card__type {
  font-size: 1.4rem;
  margin: 0 0 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
}

.pricing-card__row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0 0;
}

.pricing-card__row + .pricing-card__row {
  margin-top: 0.35rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-card__label {
  font-family: "Rubik", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #666;
}

.pricing-card__value {
  font-family: "Rubik", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
}

.pricing-card__price {
  font-family: "Rubik", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--body-color);
}
/*Price List Codes End From Here*/



.nopad{
  padding: 0px!important;
  margin: 0px!important;
}
.small-heading {
  font-size: 25px;
  color: #fff;
  margin-bottom: 20px;
  padding-left: 0;
}
svg:not(:root).svg-inline--fa{
  font-size: 20px;
}

/* —— Contact section (redesigned) —— */
.contact-section {
  position: relative;
  padding: 4.5rem 0 4.75rem;
  overflow: hidden;
  background: var(--luxe-bg);
}

.contact-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(197, 160, 89, 0.12), transparent 52%),
    radial-gradient(ellipse 50% 40% at 100% 80%, rgba(61, 122, 122, 0.08), transparent 50%),
    linear-gradient(180deg, #0c1018 0%, var(--luxe-bg) 45%, #070910 100%);
  pointer-events: none;
  z-index: 0;
}

.contact-section__intro {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  position: relative;
  z-index: 1;
}

.contact-section__eyebrow {
  font-family: "Rubik", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--luxe-gold);
  margin: 0 0 0.5rem;
}

.contact-section__title {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.15;
  color: #fff;
}

.contact-section__lead {
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section__grid {
  position: relative;
  z-index: 1;
}

.contact-section__panel {
  height: 100%;
  border-radius: 2px;
  border: 1px solid var(--luxe-line);
  background: linear-gradient(155deg, rgba(22, 26, 36, 0.95) 0%, rgba(10, 12, 20, 0.98) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  padding: 2rem 1.75rem 2.25rem;
}

.contact-section__panel--form {
  border-top: 3px solid var(--luxe-gold);
}

.contact-section__panel--aside {
  border-top: 3px solid rgba(61, 122, 122, 0.85);
}

.contact-section__card-title {
  margin: 0 0 0.35rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #fff;
}

.contact-section__hint {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.contact-section__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.85);
  margin-bottom: 0.35rem;
}

.contact-section__input.form-control,
#contact .contact-section__input.form-control {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0.65rem 0.85rem;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-section__input.form-control::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-section__input.form-control:focus {
  border-color: var(--luxe-gold-muted);
  background: rgba(255, 255, 255, 0.09);
}

.contact-section__submit {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0.25rem 0 0;
  padding: 0.85rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.contact-section__channels li + li {
  margin-top: 0.85rem;
}

.contact-section__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  text-decoration: none !important;
  color: rgba(255, 255, 255, 0.92) !important;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

a.contact-section__channel:hover {
  border-color: var(--luxe-gold-muted);
  background: rgba(197, 160, 89, 0.08);
  transform: translateY(-1px);
}

.contact-section__channel--wa:hover {
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.08);
}

.contact-section__channel-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--luxe-line);
  color: var(--luxe-gold);
  font-size: 1.15rem;
}

.contact-section__channel--wa .contact-section__channel-icon {
  color: var(--whatsapp);
  border-color: rgba(37, 211, 102, 0.35);
}

.contact-section__channel-body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}

.contact-section__channel-kicker {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.contact-section__channel-value {
  font-size: 1rem;
  font-weight: 500;
  font-family: "Rubik", sans-serif;
}

.contact-section__maplink {
  display: inline-block;
  margin-top: 1.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--luxe-gold) !important;
  text-decoration: none !important;
  border-bottom: 1px solid var(--luxe-gold-muted);
  padding-bottom: 0.15rem;
}

.contact-section__maplink:hover {
  color: #e4c98a !important;
  border-bottom-color: #e4c98a;
}

@media (min-width: 992px) {
  .contact-section__panel {
    padding: 2.25rem 2rem 2.5rem;
  }
}
table {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
}
th {
  display: table-cell;
  vertical-align: inherit;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  background-color: #000;
}

table tr:hover{
  background-color: #f0f0f0;
}
table tr:nth-child(even) td {
  background-color: #f8f0f0;
}
table tr:nth-child(odd) td {
  background-color: #ffffff;
}
a:hover,a:focus{
  outline: none;
  text-decoration: none;
}
.tab .nav-tabs{
  border: none;
  margin-bottom: 20px;
}
.tab .nav-tabs li a{
  display: block;
  padding: 5px 10px;
  margin: 0 10px 0px 0;
  font-size: 20px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  position: relative;
  transition: all 0.3s ease 0s;
}
.tab .nav-tabs li a{
  background-color: var(--kk);
  color: white;
  }
.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a{
  background-color: var(--primary-color);
  color: var(--light);
  border: none;
}
.tab .nav-tabs li a:before{
  content: "";
  width: 3px;
  height: 0;
  background: #000000;
  margin: 0 auto;
  position: absolute;
  bottom: -39px;
  left: 0;
  right: 0;
  transition: all 0.5s ease 0s;
}

.tab .nav-tabs li a:hover:after,
.tab .nav-tabs li.active a:after{
  bottom: -18px;
  opacity: 1;
}
.tab .nav-tabs li a:hover:before,
.tab .nav-tabs li.active a:before{ height: 25px; }
.tab .nav-tabs li a:after{
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--secondary-color);
  margin: 0 auto;
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.5s ease 0s;
}
.tab .tab-content{
  padding: 20px 0px;
  margin-top: 10px;
  border-radius: 20px;
  font-size: 15px;
  color: #fff;
  line-height: 25px;
  position: relative;
}
.tab .tab-content h3{
  font-size: 24px;
  margin-top: 0;
}
@media only screen and (max-width: 479px){
  .tab .nav-tabs{ margin-bottom: 0; }
  .tab .nav-tabs li{
     text-align: left;
      margin-bottom: 0px;
  }
  .tab .nav-tabs li a {
    display: list-item;
    padding: 5px 7px;
    margin: 0 10px 20px 0;
    font-size: 11px;
    font-weight: 600;

  }
}
.black-text{
  color: black;
}

/* Standalone pages: privacy policy, thank you */
body.page-standalone {
  background: var(--luxe-bg);
  min-height: 100vh;
}

.page-standalone .header {
  position: fixed;
}

.page-standalone .logo a {
  display: flex;
  align-items: center;
  color: inherit;
}

.page-standalone-main {
  padding-top: calc(5.75rem + env(safe-area-inset-top, 0));
  padding-bottom: 3rem;
  min-height: 100vh;
  background: linear-gradient(
    165deg,
    var(--luxe-bg-elevated) 0%,
    var(--luxe-bg) 42%,
    #0d0f18 100%
  );
}

.page-standalone-main::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 20% 0%,
    rgba(197, 160, 89, 0.06),
    transparent 55%
  );
  pointer-events: none;
  z-index: 0;
}

.page-standalone-main > .container {
  position: relative;
  z-index: 1;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 2rem 1.75rem 2.5rem;
  background: var(--luxe-surface);
  border: 1px solid var(--luxe-line);
  border-radius: 14px 0 14px 0;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.legal-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--luxe-gold);
  margin: 0 0 0.35rem;
}

.legal-card__subtitle {
  font-family: "Rubik", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1.5rem;
}

.legal-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--luxe-gold);
  margin: 2rem 0 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(197, 160, 89, 0.22);
}

.legal-card h2:first-of-type {
  margin-top: 1.5rem;
  padding-top: 0;
  border-top: 0;
}

.legal-card h3 {
  font-family: "Rubik", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin: 1.1rem 0 0.45rem;
  border-top: 0;
  padding-top: 0;
}

.legal-card p,
.legal-card li {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.legal-card ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-card ul li {
  margin-bottom: 0.35rem;
}

.legal-card a {
  color: var(--luxe-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-card a:hover {
  color: #e4c77a;
}

.legal-card hr {
  border: 0;
  border-top: 1px solid rgba(197, 160, 89, 0.22);
  margin: 1.5rem 0;
}

.standalone-nav-home {
  font-family: "Rubik", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 0.5rem 1rem;
  border: 1px solid var(--luxe-line);
  border-radius: 4px;
  margin-right: 1rem;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.standalone-nav-home:hover {
  color: var(--luxe-gold) !important;
  border-color: rgba(197, 160, 89, 0.45);
  background: rgba(197, 160, 89, 0.08);
  text-decoration: none;
}

.thankyou-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--luxe-surface);
  border: 1px solid var(--luxe-line);
  border-radius: 14px 0 14px 0;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.thankyou-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--luxe-gold);
  margin-bottom: 0.75rem;
}

.thankyou-card__text {
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.thankyou-card__hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}