@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --color-primary: #c08831;
  --color-secondary: #3d4844;
  --color-bg: #f4f1e8;
  --color-text: #000000;
  --color-white: #ffffff;
  --color-dark: #0f0d0d;
  --color-gray: #929292;
  --color-light-gray: #eeeeed;
  --color-blue: #0054AD;
  --color-red: #a00014;
  --color-whatsapp: #25d366;
  --color-call: #0d6efd;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --shadow-xl: 8px 8px 40px 0px rgba(0, 0, 0, 0.3);
  
  --z-base: 1;
  --z-content: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
  
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 3rem;
  
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  background-color: var(--color-bg);
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  font-variation-settings: "wdth" 100;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  text-transform: capitalize;
  letter-spacing: initial;
  line-height: initial;
}

h1 {
  font-size: clamp(1.875rem, 5vw, 2.5rem); /* 30-40px */
  font-weight: 700;
  color: #E6C87A;
  position: relative;
}

h2 {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.1875rem); /* 28-35px */
  color: var(--color-primary);
  gap: 0.9375rem;
  margin-bottom: 0;
  z-index: var(--z-content);
}

h3 {
  font-size: clamp(1.5625rem, 3vw, 1.875rem); /* 25-30px */
}

h4 {
  font-size: clamp(1.1875rem, 2.5vw, 1.25rem); /* 19-20px */
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem); /* 18-20px */
}

h6 {
  font-size: clamp(1.125rem, 2vw, 1.1875rem); /* 18-19px */
  color: var(--color-primary);
  font-weight: 500;
  position: relative;
}

p {
  letter-spacing: normal;
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  margin: 0;
}

.banner_wrapper_text h2,
.banner_wrapper_text h6 {
  text-align: center;
}

.line1, .line2 {
  background-image: url("../img/ahj.png");
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  width: 2.1875rem;
  height: 0.75rem;
  position: relative;
}

.heading {
  position: relative;
  padding-left: 0.75rem;
}

.heading::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.3125rem;
  height: 100%;
  content: "";
  background-color: var(--color-primary);
}

/* ========================================
   BUTTONS
   ======================================== */
.btan {
  display: inline-block;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  transition-property: color;
  transition-duration: var(--transition-base);
  padding: 1.0625rem 2.5rem;
  color: var(--color-white);
  background: var(--color-primary);
  border-radius: 2.625rem;
  z-index: var(--z-dropdown);
}

.btan a {
  color: var(--color-white);
}

.btan::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: scaleY(1);
  transform-origin: 50%;
  transition-property: transform;
  transition-duration: var(--transition-base);
  transition-timing-function: ease-out;
}

.btan:hover::after {
  transform: scaleY(0);
}

.btan:hover {
  box-shadow: var(--shadow-xl);
  color: var(--color-white);
  transition: var(--transition-slow);
  background-color: var(--color-secondary);
}

.btan:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.btan a:hover {
  color: var(--color-white);
}

.btan_g {
  background: transparent;
  border: 2px solid var(--color-text);
  padding: 0.1875rem 0.6875rem;
  color: var(--color-text);
  font-size: 1.375rem;
  position: relative;
  top: 0.5rem;
  left: -0.625rem;
  z-index: var(--z-dropdown);
  float: right;
  border-radius: 9rem;
}

/* ========================================
   FIXED ELEMENTS
   ======================================== */
.enquire-now-text {
  position: fixed;
  right: -2.8125rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: var(--color-blue);
  padding: 0.75rem 1.25rem;
  z-index: var(--z-modal);
  border-radius: 0.375rem 0.375rem 0 0;
}

.enquire-now-text a {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.0625rem;
}

.enquire-now-text:hover {
  background: var(--color-red);
}

.enquire-now-text:focus-within {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* Desktop Bottom Icons */
@media (min-width: 992px) {
  .floating-icons {
    display: none;
  }

  .bottom-icons {
    position: fixed;
    right: 1.25rem;
    bottom: 3.125rem;
    z-index: var(--z-modal);
  }

  .bottom-icons .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
  }

  .bottom-icons .icon:hover {
    transform: scale(1.1);
  }

  .bottom-icons .icon:focus {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
  }

  .bottom-icons .call,
  .bottom-icons .whatsapp {
    margin-top: 0.625rem;
  }

  .bottom-icons .up {
    background: #005aa7;
    position: absolute;
    right: 3.75rem;
    bottom: 0.625rem;
  }

  .bottom-icons .call {
    background: var(--color-call);
  }

  .bottom-icons .whatsapp {
    background: var(--color-whatsapp);
  }
}

/* Mobile Sticky Icons */
.sticky_icon {
  display: none;
}

/* ========================================
   HEADER
   ======================================== */
.header {
  padding: 0.375rem 0;
  z-index: var(--z-sticky);
  margin: 0 auto;
  background-color: var(--color-bg);
  border-left: transparent;
  border-right: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.header a {
  color: var(--color-text) !important;
}

.header.is-sticky {
  position: fixed;
  box-shadow: var(--shadow-lg);
  padding: 0.3125rem 0;
  backdrop-filter: blur(10px);
  animation: slideDown 0.35s ease-out;
  background-color: var(--color-bg);
  border-bottom: none;
  height: auto;
  right: 0;
  top: 0;
  left: 0;
}

.header.is-sticky .menu {
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  border-bottom: 0;
  border-right: 0;
}

.header .contect-us {
  padding: 0.1875rem 1.3125rem 0.1875rem 0.1875rem;
  background: var(--color-primary);
  border-radius: 0.4375rem;
}

.header .contect-us ul li .fa {
  padding: 0.6875rem 0.8125rem 0.6875rem 0.75rem;
  background: var(--color-white);
  border-radius: 0.1875rem;
  margin-right: 0.6875rem;
  color: var(--color-primary);
  border-radius: 0.4375rem;
}

.header .contect-us ul li span {
  color: var(--color-white);
}

.header .contect-us ul li a {
  background: transparent;
  padding: 0;
}

.header .contect-us ul li a:hover {
  background: transparent;
  padding: 0;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Menu Styles */
.menu ul li {
  display: inline-block;
}

.menu ul li a {
  position: relative;
  transition: var(--transition-slow);
  color: var(--color-white);
  font-size: 1.125rem;
  padding: 0 1.25rem;
}

.menu ul li a:hover::after {
  width: 100%;
  right: 0;
  left: 0;
  transition: var(--transition-base);
}

.header ul li a.active {
  color: var(--color-primary) !important;
}

.header ul li a:hover,
.header ul li a:focus {
  color: var(--color-primary) !important;
  outline: none;
}

.header ul li a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.fixed-tag {
  position: fixed;
  top: 0;
  z-index: var(--z-modal);
}

/* ========================================
   BANNER SECTION
   ======================================== */
.banner_bg {
  position: relative;
}

.banner_bg::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: transparent;
  z-index: var(--z-base);
  background-image: url("../img/slider-bg-overlay-2.png");
}

.banner_bg .banner_img img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}

.banner_text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  display: flex;
  color: var(--color-white);
  z-index: var(--z-content);
}

.banner .banner_wrapper_text {
  padding: 2.625rem 3.0625rem;
  position: relative;
  width: 31.25rem;
  box-shadow: var(--shadow-md);
  background: rgba(12, 19, 15, 0.84);
}

.banner .banner_wrapper_text .banner_highlight h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  padding: 0.25rem 0.4375rem;
  border-radius: 0.4375rem;
  box-shadow: var(--shadow-md);
  background: linear-gradient(-45deg, #261b07, var(--color-primary), #261b07, var(--color-primary));
  background-size: 400% 400%;
  animation: Gradient 3s ease infinite;
  font-size: 1.0625rem;
  letter-spacing: 0.0625rem;
  margin-bottom: 0.9375rem;
}

@keyframes Gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

.banner .banner_wrapper_text .bgk ul li i {
  font-size: 3.625rem;
  animation: flip infinite 4s;
  will-change: transform;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(0) translateY(0%);
    animation-timing-function: ease-out;
  }
  100% {
    transform: perspective(400px) rotateY(360deg) translateY(0%);
    animation-timing-function: ease-in;
  }
}

.banner .banner_wrapper_text .bgk ul li h3 {
  color: var(--color-white);
  font-size: 1.3125rem;
  letter-spacing: 0.0625rem;
  border-bottom: 2px solid var(--color-white);
  padding-bottom: 0.5rem;
}

.banner .banner_wrapper_text .bgk ul li p {
  font-size: 2.875rem !important;
  font-weight: 623;
  padding-top: 0.875rem;
}

.banner .banner_wrapper_text h3 {
  font-size: 1.3125rem;
  color: var(--color-white);
}

.banner .banner_wrapper_text .price_bg {
  padding: 0.6875rem;
  width: 29.3125rem;
  background: var(--color-primary);
}

.banner .banner_wrapper_text h5 {
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  font-size: 1.5625rem;
  font-weight: bold;
}

.banner .banner_wrapper_text i {
  color: var(--color-white);
}

.banner .banner_wrapper_text h6 {
  font-size: 1.0625rem;
  margin: 0;
  padding: 0;
  color: var(--color-white) !important;
  letter-spacing: 0.075rem;
  position: relative;
}

.banner .banner_wrapper_text h6::after {
  position: absolute;
  bottom: -0.75rem;
  left: 0;
  background-color: var(--color-primary);
  width: 21.5625rem;
  height: 0.1875rem;
  content: "";
}

.banner .banner_wrapper_text ul li h5 {
  font-size: 1.625rem;
}

.Banner-form {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: var(--z-dropdown);
  width: 24.3125rem;
}

/* Form Styles */
.banner .banner_text .form_section {
  padding: 1.75rem 2.625rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: 0.75rem 1.625rem;
  width: 22.75rem;
  background: var(--color-white);
  border-top: 1.25rem solid var(--color-primary);
}

.form-label {
  color: #4f4b4b;
  text-align: left !important;
  float: left;
  margin-left: 0.3125rem;
}

.text_form {
  height: 2.8125rem;
  padding: 0.75rem 3.25rem !important;
}

.icon-inside {
  position: absolute;
  width: 3.125rem;
  height: 2.75rem;
  left: 0.5625rem;
  top: 0;
  pointer-events: none;
  font-size: 1.125rem;
  color: var(--color-primary);
  z-index: var(--z-base);
  display: flex;
  align-items: center !important;
  justify-content: center !important;
}

.form_section p {
  color: #070707;
  border-bottom: 4px double var(--color-primary);
  padding: 0 0 0.625rem 0;
}

.banner .banner_text .form_section h3 {
  color: #282726;
  font-size: 1.375rem;
  font-weight: bold;
}

.form_bottom .form_section {
  padding: 1.75rem 2.625rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: 0.75rem 1.625rem;
  background: var(--color-white);
  border-top: 1.25rem solid var(--color-primary);
}

#SubmitQuerytop {
  background: var(--color-primary);
  color: var(--color-white);
  outline: none;
  width: 100%;
  height: 2.625rem;
  border: none;
  font-weight: bold;
  border-radius: 0.5625rem;
  transition: var(--transition-base);
  cursor: pointer;
}

#SubmitQuerytop:hover {
  background-color: #424242;
  transition: var(--transition-base);
  border: none;
  box-shadow: var(--shadow-xl);
}

#SubmitQuerytop:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.highlight_tag {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 50%;
  bottom: 50%;
  z-index: var(--z-dropdown);
  box-shadow: var(--shadow-md);
}

.highlight_tag img {
  width: 18.75rem;
}

.img_high {
  position: absolute;
  top: 6%;
  z-index: var(--z-dropdown);
  right: 48%;
}

.img_high img {
  width: 6.8125rem;
}

/* Scroll Down Animation */
.scroll-down {
  position: absolute;
  bottom: -1.5rem;
  left: calc(50% - 21.25rem);
  height: 5.5rem;
  width: 42.5rem;
  text-align: center;
  z-index: var(--z-dropdown);
}

.hero-5-scroll-wrap {
  height: 2rem;
  width: 1.25rem;
  border: 2px solid var(--color-white);
  display: inline-block;
  border-radius: 1.875rem;
  margin-top: 1.25rem;
  position: relative;
}

.hero-5-scroll-wrap::before {
  content: "";
  height: 0.375rem;
  width: 0.125rem;
  border-radius: 3.125rem;
  background-color: var(--color-white);
  position: absolute;
  top: 0.3125rem;
  left: 0.4375rem;
  animation: scrollMove 1.5s infinite;
}

@keyframes scrollMove {
  to {
    transform: translateY(0.75rem);
    opacity: 0.2;
  }
  from {
    transform: translateY(0%);
  }
}

/* Slider Dots */
.slick-dots {
  bottom: 0.4375rem;
  z-index: var(--z-dropdown);
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

.slick-dots li.slick-active button::before {
  opacity: 0.95;
  color: #c99c3e;
}

.slick-dots li button::before {
  font-family: 'slick';
  font-size: 0.875rem;
  line-height: 1.25rem;
}

/* ========================================
   MODAL
   ======================================== */
.madal-reload {
  background: rgba(0, 0, 0, 0.69);
  align-items: center;
  justify-content: center;
  align-content: center;
}

.madal-reload .modal-dialog {
  position: relative;
  width: 26rem !important;
  margin: var(--bs-modal-margin);
  pointer-events: none;
  justify-content: center;
  display: flex;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
}

.madal-reload .modal-header {
  padding: 0;
  height: 0;
  border: 0;
  display: block !important;
}

.madal-reload .modal-content {
  margin: 0.75rem;
}

.madal-reload .form-control {
  background-color: var(--color-white) !important;
  border: 1px solid var(--color-gray);
}

.madal-reload #SubmitQuerytop {
  background: var(--color-primary) !important;
}

.madal-reload h5 {
  color: var(--color-text);
  font-size: 2.0625rem;
}

.madal-reload p {
  border-top: 1px solid #959595;
}

.madal-reload .motal_form_text span i {
  color: var(--color-primary);
}

.madal-reload .motal_form_text h3 {
  font-size: 1.5625rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about_bg {
  padding: 5.625rem 0;
  background-image: url("../img/about_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: var(--z-content);
}

.about_bg::after {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -2;
}

.about_bg .about_over {
  top: 15%;
  font-size: 4.3125rem;
  position: absolute;
  line-height: 6.25rem;
  font-weight: 600;
  z-index: -1;
  opacity: 0.2;
  text-transform: uppercase;
  right: 1.5625rem;
  writing-mode: tb-rl;
  top: 50%;
  transform: rotate(180deg) translateY(50%);
  height: 100%;
  text-align: center;
}

.about_bg .about_over h3 {
  color: var(--color-text);
  font-size: 4.4375rem;
  letter-spacing: 0.75rem;
}

.about_bg p {
  color: var(--color-text);
  line-height: 1.88125rem;
  letter-spacing: 0.063125rem;
  font-size: 1.0625rem;
}

.about_bg .about_img {
  position: relative;
}

.about_bg .about_img .overlay_img {
  position: absolute;
  top: -5.8125rem;
  right: 13.6875rem;
  left: -3.125rem;
  background: #333639;
  padding: 0 1.8125rem 2rem 0;
}

/* ========================================
   HEADER LINE (MARQUEE)
   ======================================== */
.header_line {
  z-index: var(--z-dropdown);
  position: relative;
  padding: 0.5625rem 0;
  background: var(--color-primary);
}

marquee {
  font-size: 3.625rem;
  letter-spacing: 0.5625rem;
}

.header_line span {
  -webkit-text-stroke: 1px var(--color-white) !important;
  color: transparent !important;
}

/* ========================================
   PRICE LIST SECTION
   ======================================== */
.price_list_bg {
  position: relative;
  padding: 5.625rem 0;
  background: var(--color-light-gray);
}

.price_list_bg .btan a {
  color: var(--color-white);
}

.price_list {
  z-index: var(--z-content);
  position: relative;
}

.price_list .price_list_box {
  padding: 1.5625rem;
  box-shadow: var(--shadow-md);
  position: relative;
  background-color: var(--color-white);
  border-radius: 1.25rem;
}

.price_list .price_list_box::after {
  background-image: url("../img/service-card-bg-2-1.png");
  background-size: cover;
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.1;
  z-index: var(--z-base);
}

.price_list .price_list_box .price_list_high {
  display: inline-block;
  padding-bottom: 0.75rem;
  position: relative;
  z-index: var(--z-content);
  color: var(--color-white);
}

.price_list .price_list_box .Price_list_text_highlight {
  position: relative;
  z-index: var(--z-content);
  padding-bottom: 0.0625rem;
  border-bottom: 2px dotted var(--color-text);
}

.price_list_high h3 {
  font-size: 1.25rem;
  color: var(--color-text);
  border: 2px solid var(--color-primary);
  padding: 0.6875rem 5.1875rem;
  background: var(--color-light-gray);
}

.Price_list_text {
  color: var(--color-text);
  position: relative;
  z-index: var(--z-content);
}

.Price_list_text h3 {
  font-size: 2.5rem;
}

.price_list .price_over {
  font-size: 4.3125rem;
  position: absolute;
  line-height: 6.25rem;
  font-weight: 600;
  z-index: -1;
  opacity: 0.2;
  text-transform: uppercase;
  left: 1.5625rem;
  writing-mode: tb-rl;
  top: 50%;
  transform: rotate(180deg) translateY(50%);
  height: 100%;
  text-align: center;
}

.price_list .price_over h3 {
  color: var(--color-text);
  font-size: 4.4375rem;
  letter-spacing: 0.75rem;
}

/* ========================================
   HIGHLIGHT SECTION
   ======================================== */
.highlight_bg {
  padding: 5.625rem 0;
  position: relative;
}

.highlight_bg h2 {
  color: var(--color-text) !important;
}

.highlight_bg .hilight_wrapp_text .highlight_wrapp ul li h4 {
  font-size: 1.875rem;
  display: inline-flex;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-text);
}

.highlight_bg .hilight_wrapp_text .highlight_wrapp ul li p {
  font-size: 1.1875rem;
  color: #101010;
  letter-spacing: 0.075rem;
}

.highlight_bg .btan {
  background-color: transparent !important;
  padding: 0;
}

.highlight_bg .btan a {
  color: var(--color-text) !important;
  font-size: 1.5625rem !important;
  text-decoration: underline;
}

.highlight_bg .highlight_over {
  font-size: 4.3125rem;
  position: absolute;
  line-height: 6.25rem;
  font-weight: 600;
  z-index: var(--z-dropdown);
  opacity: 0.2;
  text-transform: uppercase;
  right: 1.5625rem;
  writing-mode: tb-rl;
  top: 50%;
  transform: rotate(180deg) translateY(50%);
  height: 100%;
  text-align: center;
}

.highlight_bg .highlight_over h3 {
  color: var(--color-text);
  font-size: 4.4375rem;
  letter-spacing: 0.9375rem;
}

/* ========================================
   AMENITIES SECTION
   ======================================== */
.amenities_bg {
  box-shadow: var(--shadow-sm);
  padding: 5.625rem 0;
}

.amenities_box {
  background: #f5f5f5;
  text-align: center;
  border: 1px solid #bbbdbb;
  box-shadow: var(--shadow-md);
}

.overlay_text i {
  font-size: 2.9375rem;
  color: var(--color-primary);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery_bg {
  padding: 5.625rem 0;
  background: var(--color-light-gray);
}

.gallery_img {
  position: relative;
  overflow: hidden;
}

.gallery_img img {
  transform: scale(1);
  transition: var(--transition-base);
  min-height: 15.625rem;
  border: 2px solid var(--color-primary);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.gallery_img .overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--color-white);
  padding: 0.5625rem;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: var(--transition-base);
  transform: scale(0);
}

.gallery_img .overlay a {
  color: var(--color-text);
  font-size: 0.875rem;
  transition: var(--transition-base);
}

.gallery_img .overlay a i {
  color: var(--color-white);
  font-size: 0.75rem;
  background-color: var(--color-primary);
  padding: 0.375rem;
  box-shadow: var(--shadow-md);
}

.gallery_img .overlay:hover a {
  color: var(--color-primary);
  transition: var(--transition-base);
}

.gallery_img:hover .overlay {
  transform: scale(1);
  transition: var(--transition-base);
}

/* ========================================
   FLOOR PLAN SECTION
   ======================================== */
.floor_plan {
  padding: 5.625rem 0;
  background: var(--color-light-gray);
  position: relative;
  z-index: var(--z-content);
}

.floor_plan_box h5 {
  text-align: center;
  color: var(--color-white);
  padding: 0.75rem 0;
  background-color: var(--color-primary);
}

.floor_plan_img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  place-content: center;
  display: flex;
  text-align: center;
  width: 11.375rem;
  height: 2.9375rem;
  margin: auto;
}

.floor_plan_img img {
  opacity: 0.5;
  filter: blur(1px);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floor_plan_img {
  position: relative;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.floor_plan .floor_over {
  font-size: 4.3125rem;
  position: absolute;
  line-height: 6.25rem;
  font-weight: 600;
  z-index: var(--z-dropdown);
  opacity: 0.2;
  text-transform: uppercase;
  right: 1.5625rem;
  writing-mode: tb-rl;
  top: 50%;
  transform: rotate(180deg) translateY(50%);
  height: 100%;
  text-align: center;
}

.floor_plan .floor_over h3 {
  color: var(--color-text);
  font-size: 4.4375rem;
  letter-spacing: 0.8125rem;
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.location_bg {
  padding: 5.625rem 0;
  box-shadow: var(--shadow-sm);
}

.location_bg h2 {
  color: var(--color-text);
}

.location_bg h4 {
  font-size: 1.875rem;
  -webkit-text-stroke: 1px var(--color-text);
  color: transparent;
}

.location_bg h5 {
  font-size: 1.125rem;
  color: var(--color-text);
  letter-spacing: 0.075rem;
}

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer_bg {
  background-image: url("../img/map_bg.png");
  padding: 5.625rem 0;
  color: var(--color-white);
  position: relative;
  z-index: var(--z-content);
  background-size: cover;
}

.footer {
  position: relative;
  z-index: var(--z-base);
}

.footer_bg h3 {
  position: relative;
  color: var(--color-primary);
}

.footer_contant p {
  line-height: 1.625rem;
  letter-spacing: 0.06875rem;
  color: var(--color-text);
}

.footer_contant .contact_us ul li i {
  font-size: 0.875rem;
  color: var(--color-white);
  background-color: var(--color-primary);
  border-radius: 50%;
  padding: 0.9375rem;
}

.footer_contant .contact_us ul li p {
  color: var(--color-primary);
  font-weight: bold;
}

.footer_contant .contact_us ul li span {
  font-size: 1.125rem;
  color: var(--color-text);
}

.contect-form {
  margin: 0 3.125rem;
}

.contect-form .form_section {
  padding: 1.75rem 2.625rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  margin: 0.75rem 1.625rem;
  background: var(--color-white);
  border-top: 1.25rem solid var(--color-primary);
}

.contect-form h3 {
  position: relative;
}

.foooter_form .form-control::placeholder {
  color: var(--color-white);
}

.footer_b .information-web {
  margin: 0 auto;
  font-size: 0.875rem;
}

.footer-bootom {
  border-top: 1px solid var(--color-primary);
  padding: 1.4375rem 0;
  color: var(--color-text);
}

.footer-bootom ul a {
  font-size: 1rem;
  color: var(--color-primary);
  text-decoration: underline;
}

/* ========================================
   SCROLL TO TOP BUTTON
   ======================================== */
.go-top {
  position: fixed;
  bottom: 9%;
  right: 3%;
  padding: 1.25rem;
  display: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  z-index: var(--z-sticky);
}

.go-top::after {
  font-family: FontAwesome;
  content: "\f062";
  padding: 0.8125rem 0.9375rem;
  color: var(--color-white);
  position: absolute;
  bottom: 0.625rem;
  font-size: 1rem;
  background: var(--color-primary);
  border-radius: 1.5625rem;
  left: 0;
}

.go-top-text {
  position: absolute;
  width: 3.75rem;
  text-align: center;
  font-family: 'Questrial';
  line-height: 1.5;
  letter-spacing: 0.1875rem;
  font-size: 0.75rem;
  margin: 1.25rem 0 0 -0.25rem;
}

.go-top:hover {
  transition: var(--transition-base);
  transform: scale(1.1);
}

.go-top:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ========================================
   RESPONSIVE STYLES - DESKTOP (992px - 1600px)
   ======================================== */
@media only screen and (min-width: 992px) and (max-width: 1600px) {
  h1 {
    font-size: 1.6875rem;
  }

  .header .menu ul li a {
    padding: 0 0.6875rem;
    font-size: 1.125rem;
  }

  .header .contect-us ul li .fa {
    padding: 0.4375rem 0.625rem 0.375rem 0.4375rem;
  }

  .header .contect-us {
    padding: 0.4375rem 0.5rem;
  }

  .header .contect-us ul li a {
    font-size: 1.0625rem;
  }

  .banner .banner_wrapper_text {
    padding: 2rem 1.6875rem;
    width: 25rem;
  }

  .banner .banner_wrapper_text .bgk ul li p {
    font-size: 1.9375rem !important;
    font-weight: 623;
    padding-top: 0.75rem;
    margin-top: 0.3125rem !important;
  }

  .banner .banner_wrapper_text .bgk ul li h3 {
    font-size: 0.9375rem;
    letter-spacing: 0.0625rem;
  }

  .banner .banner_wrapper_text .banner_highlight h3 {
    font-size: 1rem;
    letter-spacing: 0.01875rem;
  }

  .banner .banner_wrapper_text h6 {
    font-size: 1.375rem;
  }

  .banner .banner_wrapper_text h3 {
    font-size: 1rem;
  }

  .banner .banner_text .form_section {
    width: 17.5rem;
    padding: 1.875rem 0.9375rem;
    border-top: 0.5rem solid var(--color-primary);
  }

  .text_form {
    height: 2.25rem;
    padding: 0.75rem 2.8125rem !important;
    font-size: 0.875rem;
  }

  .icon-inside {
    width: 2.125rem;
    height: 2.1875rem;
    font-size: 1.05rem;
  }

  .banner .banner_text .form_section h3 {
    font-size: 0.875rem;
    padding: 0.4375rem;
  }

  #SubmitQuerytop {
    font-size: 0.75rem;
    height: 1.9375rem;
  }

  .form_section p {
    font-size: 0.8125rem;
  }

  .highlight_tag img {
    width: 14.375rem;
  }

  .madal-reload .modal-dialog {
    width: 26rem !important;
  }

  .btan_g {
    padding: 0.1875rem 0.5625rem;
    font-size: 0.9375rem;
  }

  .madal-reload h5 {
    font-size: 1.3125rem;
  }

  .price_list_high h3 {
    font-size: 1rem !important;
  }
}

/* ========================================
   RESPONSIVE STYLES - TABLET (max-width: 991px)
   ======================================== */
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 1.875rem;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.5625rem;
  }

  h4 {
    font-size: 1.1875rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

  /* Mobile Menu Styles */
  .menu ul {
    position: fixed;
    text-align: left;
    top: 0;
    right: -100%;
    background-color: var(--color-dark);
    width: 60%;
    height: 100vh;
    transition: var(--transition-base);
    z-index: var(--z-sticky);
    padding-top: 3.25rem;
  }

  .header .menu a {
    color: var(--color-white) !important;
    font-weight: 500;
    justify-content: flex-start;
  }

  .menu ul li {
    display: block;
    padding: 1.0625rem 0 1.0625rem 1.4375rem;
  }

  .menu ul li:last-child {
    border: none;
  }

  .hamberger {
    display: flex;
    justify-content: flex-end;
  }

  .mobilemenu {
    position: relative;
    background-color: var(--color-text);
    width: 1rem;
    height: 0.125rem;
    transition: var(--transition-base);
    z-index: var(--z-sticky);
    justify-content: space-around;
    display: flex;
    align-items: center;
    top: -1.6875rem;
    cursor: pointer;
  }

  .mobilemenu::after,
  .mobilemenu::before {
    position: absolute;
    content: "";
    background-color: var(--color-text);
    width: 1.25rem;
    height: 0.125rem;
    transition: var(--transition-base);
    z-index: var(--z-sticky);
  }

  .mobilemenu::after {
    bottom: -0.4375rem;
  }

  .mobilemenu::before {
    top: -0.4375rem;
  }

  .menu.active .mobilemenu {
    background: transparent;
    transition: var(--transition-base);
  }

  .menu.active .mobilemenu::after {
    transform: rotate(45deg);
    transition: var(--transition-base);
    bottom: 0;
    background-color: var(--color-white);
  }

  .menu.active .mobilemenu::before {
    transform: rotate(-45deg);
    transition: var(--transition-base);
    top: 0;
    background-color: var(--color-white);
  }

  .menu.active ul {
    top: 0;
    right: 0;
    transition: var(--transition-base);
  }

  .menu ul li a {
    position: relative;
    padding: 0;
  }

  .menu ul li a::after {
    position: absolute;
    right: 50%;
    bottom: -0.3125rem;
    left: 50%;
    width: 0;
    height: 0.125rem;
    content: "";
    background-color: transparent;
  }

  .header ul li a.active,
  .header ul li a {
    background: transparent;
    padding: 0;
  }

  .header ul li a:hover {
    color: var(--color-primary) !important;
    background: transparent;
  }

  .header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
  }

  .Banner-form {
    position: relative;
    width: 100%;
  }

  .banner_bg .banner_img img {
    height: 45.4375rem;
  }

  .banner_bg .banner h4 {
    display: block;
    margin: 0.8125rem 0;
    padding: 0;
  }

  .banner h4 span .fa {
    color: #ececec;
    border-radius: 50%;
    background: linear-gradient(to right, #c08831d9, #c0883185);
    width: 2.5625rem;
    height: 2.375rem;
    place-content: center;
    display: flex;
    padding: 0;
    align-items: center;
    transition: var(--transition-base);
  }

  .banner h4 h3 {
    border: 2px solid var(--color-white);
    padding: 0.25rem 2rem;
    border-radius: 1.6875rem 0.5rem 0.5rem 1.6875rem;
    margin: 0 0 0 -1.75rem;
    z-index: -6;
    font-size: 1.25rem !important;
  }

  .banner .banner_text .form_section {
    width: 100%;
    margin: 0;
  }

  .banner .banner_wrapper_text .bgk ul li p {
    font-size: 2.625rem !important;
  }

  .header .contect-us {
    display: none;
  }

  /* Mobile Sticky Icons */
  .sticky_icon {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
  }

  .sticky_icon ul li a {
    color: var(--color-white);
  }

  .sticky_icon ul li {
    background-color: var(--color-primary);
    padding: 0.875rem 0;
    text-align: center;
    border-right: 2px solid #c6c6c6;
  }

  .footer-bootom {
    border-top: 1px solid var(--color-text);
    background-color: var(--color-white);
    padding: 1.4375rem 0 4.375rem 0;
  }

  .contect-form {
    margin: 0;
  }

  .contect-form .form_section {
    margin: 0;
  }

  .header .menu {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border-bottom: 0;
    border-right: 0;
  }

  .bgk {
    width: 100%;
    padding: 0;
    margin: 0;
    background-color: transparent;
  }

  .banner .banner_wrapper_text {
    margin: 0;
    width: 100%;
    padding: 0;
    background: none;
    box-shadow: none;
  }

  .banner .banner_wrapper_text .bgk ul {
    width: 100%;
  }

  .banner .banner_wrapper_text .price_bg {
    width: 100%;
  }

  .banner_bg {
    margin: 0;
  }

  .img_high img {
    width: 4.625rem;
  }

  .highlight_bg .highlight_text_high {
    margin: 0;
  }

  .highlight_bg .highlight_text_high li {
    padding-bottom: 0.9375rem;
  }

  .highlight_bg .highlight_text_high li p {
    line-height: 1.5rem;
    letter-spacing: 0;
    font-size: 1rem;
  }

  .banner .banner_wrapper_text .banner_highlight_text {
    border: 0;
  }

  marquee {
    font-size: 2.625rem;
    letter-spacing: 0.5625rem;
  }

  .highlight_tag {
    position: absolute;
    top: 6%;
    left: 50%;
    right: 50%;
    bottom: 50%;
    box-shadow: var(--shadow-md);
  }

  .highlight_tag img {
    width: 9.375rem;
  }

  .mb-tabl,
  .mt-tabl {
    margin-bottom: 1.875rem;
  }
}

/* ========================================
   MOBILE STYLES
======================================== */

@media only screen and (max-width: 767px) {

  h1 {
    color: var(--color-text);
  }

  p {
    font-size: 1rem;
  }

  /* ---------------- Banner Text ---------------- */

  .banner .banner_wrapper_text i,
  .banner .banner_wrapper_text h6 {
    color: var(--color-text) !important;
  }

  .banner .banner_wrapper_text .banner_highlight h3 {
    color: var(--color-white);
  }

  /* FIX: Duplicate h5 removed + correct size */
  .banner .banner_wrapper_text ul li h5 {
    font-size: 1.3125rem;
    line-height: 1.4;
  }

  /* FIX: Image height issue */
  .banner_bg .banner_img img {
    width: 100%;
    height: auto;
    max-height: 100%;
  }

  .banner_text {
    position: relative;
    z-index: var(--z-dropdown);
    padding: 0.9375rem 0 1.8125rem;
  }

  /* ---------------- PRICE / HEADING FIX ---------------- */
  /* Studio Start @ ₹92 Lakh* */

  .banner .banner_wrapper_text h1,
  .banner .banner_wrapper_text h2,
  .banner .banner_wrapper_text h3 {
    font-size: 1.75rem;
    line-height: 1.25;
    max-width: 100%;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .banner .banner_wrapper_text span,
  .banner .banner_wrapper_text strong {
    white-space: nowrap;
  }

  .banner .banner_wrapper_text .banner_highlight {
    padding: 0.75rem 1rem;
    max-width: 100%;
  }

  /* ---------------- Icons + BGK ---------------- */

  .banner .banner_wrapper_text .bgk ul li i {
    font-size: 2.625rem;
  }

  .banner .banner_wrapper_text .bgk ul li h3 {
    font-size: 1.125rem;
    color: var(--color-text);
    border-bottom: 2px solid var(--color-text);
  }

  /* FIX: invalid 1.rem → 1rem */
  .banner .banner_wrapper_text .bgk ul li p {
    font-size: 1rem !important;
    font-weight: 600;
    color: var(--color-text);
  }

  /* ---------------- Floating Images ---------------- */

  .high_img {
    position: absolute;
    z-index: var(--z-content);
    top: 31%;
    right: 6%;
  }

  .high_img img {
    width: 9.1875rem;
  }

  .img_high {
    position: absolute;
    top: 3%;
    right: 11%;
    z-index: var(--z-dropdown);
  }

  .img_high img {
    width: 4rem;
  }

  .banner_bg::after {
    background: none;
  }

  /* ---------------- Sections Padding ---------------- */

  .about_bg,
  .price_list_bg,
  .gallery_bg,
  .amenities_bg,
  .floor_plan,
  .highlight_bg,
  .location_bg {
    padding: 3.125rem 0;
  }

  /* ---------------- Map ---------------- */

  .map {
    position: relative;
    height: 0;
    padding-bottom: 89.25%;
    overflow: hidden;
  }

  /* ---------------- Floor Plan ---------------- */

  .floor_plan_img img {
    width: 100%;
    height: auto;
  }

  /* ---------------- Gallery ---------------- */

  .gallery_img .overlay {
    width: 13.375rem;
    height: 3.4375rem;
  }

  .gallery_img .overlay a {
    font-size: 0.9375rem;
  }

  .gallery_img .overlay a i {
    font-size: 0.6875rem;
  }

  /* ---------------- Amenities ---------------- */

  .amenities_bg h5 {
    font-size: 1.0625rem;
  }

  /* ---------------- Forms ---------------- */

  .contect-form .form_section,
  .form_bottom .form_section {
    margin: 0;
    padding: 1.75rem 1.0625rem;
  }

  /* ---------------- About + Highlight ---------------- */

  .about_bg .highlight_about_text .about_highlight li h5 {
    font-size: 1.125rem;
  }

  .highlight_bg .hilight_wrapp_text .highlight_wrapp ul li p,
  .location_bg h5 {
    font-size: 0.9375rem;
  }

  .about_bg p {
    font-size: 0.9375rem;
    line-height: 1.5rem;
  }

  .highlight_tag {
    top: 17%;
    left: 58%;
  }

  /* ---------------- Mobile Height Fix ---------------- */

  .hero,
  .banner,
  .slider {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
  }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
======================================== */

.skip-link {
  position: absolute;
  top: -2.5rem;
  left: 0;
  background: var(--color-text);
  color: var(--color-white);
  padding: 0.5rem;
  z-index: var(--z-tooltip);
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ========================================
   REDUCED MOTION
======================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ========================================
   PRINT STYLES
======================================== */

@media print {

  .sticky_icon,
  .header,
  .floating-icons,
  .bottom-icons,
  .enquire-now-text,
  .go-top {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
  }
}
