/* ===== PREMIUM LUXURY REDESIGN ===== */

:root {
  --gold: #b89152;
  --gold-light: #c9a063;
  --gold-dark: #b89152;
  --gold-glow: #b89152;
  --dark: #0a0a0a;
  --dark-rich: #0e0e0e;
  --dark-green: #101010;
  --charcoal: #161616;
  --cream: #f5f4f2;
  --warm-white: #ffffff;
  --ivory: #fcfbf9;
  --text-dark: #1a1a1a;
  --text-body: #333;
  --text-muted: #0a0a0a;
  --border-light: rgba(0, 0, 0, 0.35);
  --border-dark: rgba(255, 255, 255, 0.08);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--text-body);
  padding-right: 0 !important;
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cinzel", serif;
  font-weight: 600;
  color: var(--dark);
}

p {
  font-family: "Montserrat", sans-serif;
  color: var(--text-body);
}

/* Scroll offset for sticky nav */
section[id] {
  scroll-margin-top: 90px;
}

/* ===== PREMIUM HEADER ===== */
.premium-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  /* padding: 15px 0; */
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #000;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}

.premium-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  /* padding: 8px 0; */
  box-shadow:
    0 1px 0 rgba(176, 141, 87, 0.06),
    0 8px 40px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border-dark);
}

.premium-header .header-logo {
  max-height: 50px;
  transition: all 0.4s;
  filter: brightness(0) invert(1);
}

.premium-header.scrolled .header-logo {
  max-height: 42px;
}

.premium-header .nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 8px 16px !important;
  transition: all 0.3s;
  position: relative;
}

.premium-header .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateX(-50%);
}

.premium-header .nav-link:hover::after,
.premium-header .nav-link.active-section-link::after {
  width: 70%;
}

.premium-header .nav-link:hover,
.premium-header .nav-link.active-section-link {
  color: #b89152 !important;
}

.btn-header-cta {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  background: transparent;
  border-radius: 6px;
  transition: all 0.4s;
}

.btn-header-cta:hover {
  background: var(--gold);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(176, 141, 87, 0.3);
}

/* Mobile hamburger */
.navbar-toggler {
  border: none !important;
  padding: 8px;
  outline: none !important;
  box-shadow: none !important;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 991px) {
  .premium-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
  }
  .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    padding: 20px;
    margin-top: 10px;
    border: 1px solid var(--border-dark);
    border-radius: 12px;
  }
  .premium-header .nav-link {
    padding: 12px 8px !important;
    border-bottom: 1px solid var(--border-dark);
  }
}

/* ===== HERO BANNER ===== */
.hero-banner {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-banner .carousel-item {
  height: 100vh;
  min-height: 700px;
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  /* animation: heroZoom 20s ease-in-out infinite alternate; */
  /* will-change: transform; */
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 25%,
    rgba(0, 0, 0, 0.35) 45%,
    rgba(0, 0, 0, 0.7) 75%,
    rgba(0, 0, 0, 0.9) 100%
  );
  z-index: 2;
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset 0 0 250px rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

/* Slide text — all content inside each carousel-item */
.hero-slide-text {
  position: absolute;
  bottom: 35%;
  left: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-slide-text .hero-location {
  font-family: "Montserrat", sans-serif;
  font-size: 1.42rem;
  font-weight: bold;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.hero-slide-text h1 {
  font-family: "Cinzel", serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -1px;
  color: #ffffff;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-slide-text h1 span.gold-text {
  color: var(--gold-light);
  text-shadow: 0 0 40px rgba(176, 141, 87, 0.3);
}

.hero-slide-text .hero-config {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 24px;
}

.hero-slide-text .hero-price-block {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 60px;
  padding: 14px 36px;
  margin-bottom: 10px;
}

.hero-slide-text .hero-price-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.hero-slide-text .hero-price-value {
  font-family: "Cinzel", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(176, 141, 87, 0.25);
}

.hero-slide-text .hero-price-note {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 16px;
}

.hero-slide-text .hero-cta-row {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-slide-text .btn-hero {
  font-family: "Montserrat", sans-serif;
  padding: 16px 44px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  backdrop-filter: blur(6px);
  pointer-events: auto;
}

.hero-slide-text .btn-hero:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 8px 35px rgba(176, 141, 87, 0.35);
  transform: translateY(-3px);
}

.hero-slide-text .btn-hero-fill {
  background: linear-gradient(135deg, #b89152, var(--gold-dark));
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 6px 30px rgba(176, 141, 87, 0.3);
}

.hero-slide-text .btn-hero-fill:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 10px 40px rgba(176, 141, 87, 0.5);
}

/* Hide all slide text elements by default */
.hero-slide-text .hero-location,
.hero-slide-text h1,
.hero-slide-text .hero-config,
.hero-slide-text .hero-price-block,
.hero-slide-text .hero-cta-row {
  opacity: 0;
  transform: translateY(25px);
}

/* Animate only when slide is active */
.carousel-item.active .hero-slide-text .hero-location {
  animation: heroSlideIn 0.7s ease-out 0.1s forwards;
}
.carousel-item.active .hero-slide-text h1 {
  animation: heroSlideIn 0.8s ease-out 0.25s forwards;
}
.carousel-item.active .hero-slide-text .hero-config {
  animation: heroSlideIn 0.7s ease-out 0.45s forwards;
}
.carousel-item.active .hero-slide-text .hero-price-block {
  animation: heroSlideIn 0.7s ease-out 0.6s forwards;
}
.carousel-item.active .hero-slide-text .hero-cta-row {
  animation: heroSlideIn 0.7s ease-out 0.75s forwards;
}

@keyframes heroSlideIn {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Carousel prev/next nav buttons */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  z-index: 6;
  opacity: 1;
}

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

.hero-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  transition: all 0.3s;
}

.hero-nav-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(176, 141, 87, 0.3);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

.hero-scroll {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  text-align: center;
}

.hero-scroll .scroll-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: block;
  margin-bottom: 8px;
}

.hero-scroll .scroll-bar {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 1199px) {
  .hero-slide-text h1 {
    font-size: 3.2rem;
  }
  .hero-slide-text .hero-price-value {
    font-size: 1.7rem;
  }
}

@media (max-width: 991px) {
  .hero-slide-text h1 {
    font-size: 2.6rem;
    letter-spacing: 0;
  }
  .hero-slide-text .hero-config {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }
  .hero-slide-text .hero-price-value {
    font-size: 1.5rem;
  }
  .carousel-control-prev {
    left: 15px;
  }
  .carousel-control-next {
    right: 15px;
  }
  .hero-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .premium-header .nav-link:hover::after,
  .premium-header .nav-link.active-section-link::after {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero-slide-text h1 {
    font-size: 2rem;
  }
  .hero-slide-text .hero-config {
    font-size: 1.2rem;
    letter-spacing: 2px;
  }
  .hero-slide-text .hero-location {
    font-size: 1rem;
    letter-spacing: 3px;
  }
  .hero-slide-text {
    bottom: 35%;
  }
  .hero-slide-text .hero-price-block {
    flex-direction: column;
    gap: 6px;
    padding: 14px 28px;
    border-radius: 16px;
  }
  .hero-slide-text .hero-price-note {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 8px;
  }
  .hero-slide-text .hero-price-value {
    font-size: 1.4rem;
  }
  .hero-slide-text .btn-hero {
    padding: 12px 24px;
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
  .hero-slide-text .hero-cta-row {
    margin-top: 20px;
  }
  .carousel-control-prev {
    left: 8px;
  }
  .carousel-control-next {
    right: 8px;
  }
  .hero-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-slide-text h1 {
    font-size: 1.65rem;
  }
  .hero-slide-text .hero-price-value {
    font-size: 1.2rem;
  }
  .hero-slide-text .btn-hero {
    padding: 11px 20px;
    font-size: 0.65rem;
  }
  .hero-nav-btn {
    width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }
}

/* ===== SECTION HELPERS ===== */
.sec-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.sec-title {
  font-family: "Cinzel", serif;
  font-size: 2.36rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.sec-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 1px;
  max-width: 600px;
}

.gold-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 25px;
}

.gold-line-center {
  margin-left: auto;
  margin-right: auto;
}

/* ===== OVERVIEW with FORM ===== */
.sec-overview {
  padding: 120px 0;
  background: var(--warm-white);
  position: relative;
}

.sec-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.sec-overview .overview-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.sec-overview h2 {
  font-family: "Cinzel", serif;
  font-size: 2.53rem;
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 25px;
}

.sec-overview p {
  color: var(--text-body);
  line-height: 1.9;
  font-size: 1.05rem;
}

.overview-logo {
  text-align: center;
  margin-bottom: 35px;
}

.overview-logo img {
  max-width: 180px;
}

/* Overview Form Card */
.overview-form-card {
  background: #fff;
  padding: 48px 38px;
  border-radius: 20px;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.12),
    0 40px 100px rgba(0, 0, 0, 0.08),
    0 8px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.overview-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-light),
    var(--gold),
    transparent
  );
  border-radius: 20px 20px 0 0;
}

.overview-form-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(176, 141, 87, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.overview-form-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.52rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 6px;
}

.overview-form-card .overview-form-sub {
  text-align: center;
  color: var(--text-muted);
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

.overview-form-card .form-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 0 auto 28px;
  border-radius: 2px;
}

.overview-form-card .of-group {
  margin-bottom: 22px;
}

.overview-form-card .of-group label {
  display: block;
  color: var(--gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.overview-form-card .of-group input {
  width: 100%;
  padding: 16px 20px;
  background: var(--warm-white);
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  transition: all 0.4s;
}

.overview-form-card .of-group input::placeholder {
  color: #000;
  opacity: 1;
}

.overview-form-card .of-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.08);
}

.overview-form-card .mob-digits-text {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 6px;
}

/* ===== HIGHLIGHTS / USP ===== */
.sec-highlights {
  padding: 110px 0;
  background: var(--cream);
  color: var(--text-body);
  position: relative;
}

.sec-highlights::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23B08D57" fill-opacity="0.03"><path d="m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30v-4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
  pointer-events: none;
}

.highlights-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  margin: 10px auto 0;
  text-align: center;
}

.sec-highlights h2 {
  font-family: "Cinzel", serif;
  font-size: 2.36rem;
  color: var(--gold);
}

.sec-highlights .sec-tag {
  color: var(--gold);
}

.highlight-card {
  text-align: center;
  padding: 50px 30px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border-radius: 18px;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.highlight-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s;
  border-radius: 0 0 16px 16px;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  border-color: rgba(0, 0, 0, 0.55);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.highlight-card .hl-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(176, 141, 87, 0.08);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 1.5rem;
  color: var(--gold);
  transition: all 0.4s;
}

.highlight-card:hover .hl-icon {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 25px rgba(176, 141, 87, 0.3);
}

.highlight-card h4 {
  font-family: "Cinzel", serif;
  font-size: 1.14rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.highlight-card p {
  font-family: "Montserrat", sans-serif;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== EXPERIENCE SECTION ===== */
.sec-experience {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}

.exp-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 15px;
  display: block;
}

.sec-experience h2 {
  font-family: "Cinzel", serif;
  font-size: 2.36rem;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1.2;
}

.sec-experience .exp-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.sec-experience .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sec-experience .feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 767px) {
  .sec-experience .feature-list {
    grid-template-columns: 1fr;
  }
}

.sec-experience .feature-list li:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(176, 141, 87, 0.08);
  transform: translateX(6px);
}

.sec-experience .feature-list li .feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  /* background: var(--gold-glow); */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all 0.4s;
}

.sec-experience .feature-list li:hover .feature-icon {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 15px rgba(176, 141, 87, 0.25);
}

.sec-experience .feature-list li .feature-text {
  flex: 1;
}

.sec-experience .feature-list li .feature-text b {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 2px;
}

.sec-experience .feature-list li .feature-text span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.5;
}

.exp-image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
  position: relative;
}

.exp-image::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.15),
    0 8px 28px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  pointer-events: none;
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.exp-image:hover img {
  transform: scale(1.04);
}

/* ===== CONFIGURATION ===== */

.owl-carousel .owl-stage-outer {
  padding: 20px 0 !important;
}

.sec-config {
  padding: 100px 0;
  background: var(--warm-white);
}

.sec-config .config-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.sec-config h2 {
  font-family: "Cinzel", serif;
  font-size: 2.36rem;
  color: var(--gold);
  margin-bottom: 45px;
}

.conf-card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid #b0b0b0;
}

.conf-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
  border-color: rgba(0, 0, 0, 0.5);
}

.conf-card-img {
  overflow: hidden;
  height: 280px;
  cursor: pointer;
}

.conf-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
  padding: 20px;
  filter: blur(3px);
}

.conf-card:hover .conf-card-img img {
  transform: scale(1.05);
}

.conf-card-body {
  padding: 25px 20px;
  text-align: center;
}

.conf-card-body h5 {
  font-family: "Cinzel", serif;
  font-size: 1.01rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.conf-card-body p {
  font-family: "Montserrat", sans-serif;
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.conf-card-body .conf-area {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.conf-card-body .btn-conf {
  font-family: "Montserrat", sans-serif;
  padding: 10px 28px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold-dark);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s;
}

.conf-card-body .btn-conf:hover {
  background: var(--gold);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(176, 141, 87, 0.25);
}

/* ===== AMENITIES ===== */
.sec-amenities {
  padding: 100px 0;
  background: var(--ivory);
  position: relative;
}

.sec-amenities h2 {
  font-family: "Cinzel", serif;
  font-size: 2.36rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.amenity-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.amenity-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 50px;
}

.amenity-item {
  text-align: center;
  padding: 35px 20px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border-radius: 14px;
  background: #fff;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.amenity-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s;
  border-radius: 0 0 14px 14px;
}

.amenity-item:hover::after {
  transform: scaleX(1);
}

.amenity-item:hover {
  border-color: rgba(0, 0, 0, 0.55);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

.amenity-item i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
  transition: transform 0.4s;
}

.amenity-item:hover i {
  transform: scale(1.15);
}

.amenity-item p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===== CONNECTIVITY ===== */
.sec-connectivity {
  padding: 120px 0;
  background: var(--warm-white);
  position: relative;
}

.sec-connectivity h2 {
  font-family: "Cinzel", serif;
  font-size: 2.36rem;
  margin-bottom: 18px;
  color: var(--gold);
}

.sec-connectivity .conn-desc {
  font-family: "Montserrat", sans-serif;
  color: var(--text-body);
  margin-bottom: 35px;
  line-height: 1.9;
  font-size: 1.02rem;
}

.landmark-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.landmark-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.landmark-item:hover {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 10px 30px rgba(176, 141, 87, 0.08);
  transform: translateY(-3px);
}

.landmark-item .landmark-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  /* background: var(--gold-glow); */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
  transition: all 0.4s;
}

.landmark-item:hover .landmark-icon {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 12px rgba(176, 141, 87, 0.25);
}

.landmark-item .landmark-text {
  flex: 1;
}

.landmark-item .landmark-text .landmark-name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
}

.landmark-item .landmark-text .landmark-time {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
}

.conn-image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
  position: relative;
}

.conn-image::before {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
  z-index: 1;
  pointer-events: none;
}

.conn-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}

.conn-image:hover img {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .landmark-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SITE PLAN ===== */
.sec-siteplan {
  padding: 100px 0;
  background: var(--cream);
}

.sec-siteplan h2 {
  font-family: "Cinzel", serif;
  font-size: 2.36rem;
  color: var(--gold);
  margin-bottom: 45px;
}

.siteplan-image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.siteplan-image img {
  width: 100%;
  transition: transform 0.6s;
}

.siteplan-image:hover img {
  transform: scale(1.02);
}

.legend-block-new {
  padding: 35px;
  background: #fff;
  border-radius: 16px;
  height: 100%;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.legend-block-new .legend-title-new {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.legend-block-new .legend-title-new::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.legend-block-new .legend-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

@media (max-width: 991px) {
  .legend-block-new .legend-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .legend-block-new .legend-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .legend-block-new .legend-list {
    grid-template-columns: 1fr;
  }
}

.legend-block-new .legend-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--warm-white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  transition: all 0.3s;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 500;
}

.legend-block-new .legend-list li:hover {
  border-color: var(--gold);
  background: #fff;
  transform: translateX(4px);
}

.legend-block-new .legend-list li .legend-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: var(--gold-glow);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: "Montserrat", sans-serif;
}

/* Legacy ol fallback */
.legend-block-new ol {
  padding-left: 20px;
}

.legend-block-new ol li {
  padding: 7px 0;
  color: var(--text-body);
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

/* ===== GALLERY ===== */
.sec-gallery {
  padding: 100px 0;
  background: var(--warm-white);
}

.sec-gallery h2 {
  font-family: "Cinzel", serif;
  font-size: 2.36rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.gallery-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.gallery-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 45px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  position: relative;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

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

.gallery-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* ===== ABOUT ===== */
.sec-about {
  padding: 100px 0;
  background: var(--warm-white);
  color: var(--text-body);
  position: relative;
}

.sec-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(176, 141, 87, 0.3),
    transparent
  );
}

.sec-about .about-logo {
  text-align: center;
  margin-bottom: 50px;
}

.sec-about .about-logo img {
  max-width: 200px;
  opacity: 0.9;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 18px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s;
  border-radius: 0 0 14px 14px;
}

.stat-card:hover::after {
  transform: scaleX(1);
}

.stat-card:hover {
  border-color: rgba(0, 0, 0, 0.55);
  background: #fff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.stat-card .stat-number {
  font-family: "Cinzel", serif;
  font-size: 2.53rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-card p {
  font-family: "Montserrat", sans-serif;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.about-desc {
  text-align: center;
  max-width: 700px;
  margin: 40px auto 0;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.05rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
}

/* ===== LOCATION + FORM ===== */
.sec-location {
  padding: 100px 0;
  background: var(--cream);
}

.sec-location h2 {
  font-family: "Cinzel", serif;
  font-size: 2.36rem;
  color: var(--gold);
  margin-bottom: 35px;
}

.loc-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.map-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.map-wrapper iframe {
  display: block;
}

.loc-form-card {
  background: #fff;
  padding: 42px 35px;
  border-radius: 20px;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.12),
    0 40px 100px rgba(0, 0, 0, 0.08),
    0 8px 30px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.loc-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-light),
    var(--gold),
    transparent
  );
  border-radius: 20px 20px 0 0;
}

.loc-form-card h3 {
  font-family: "Cinzel", serif;
  font-size: 1.43rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 8px;
}

.loc-form-sub {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.loc-form-card .lf-group {
  margin-bottom: 22px;
}

.loc-form-card .lf-group label {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.loc-form-card .lf-group input {
  width: 100%;
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.4s;
  background: var(--warm-white);
}

.loc-form-card .lf-group input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.08);
}

.loc-form-card .mob-digits-text {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 6px;
}

/* ===== FOOTER ===== */
.footer-new {
  background: var(--dark);
  padding: 4rem 0;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  position: relative;
}

.footer-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(176, 141, 87, 0.3),
    transparent
  );
}

.footer-new .footer-logo img {
  max-width: 150px;
  margin-bottom: 25px;
}

.footer-new .rera-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-new .rera-text b {
  word-break: break-all;
  color: rgba(255, 255, 255, 0.8);
}

.footer-new .copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-new a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-new a:hover {
  color: var(--gold-light);
}

.footer-new .disclaimer-text {
  max-width: 800px;
  margin: 25px auto 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  line-height: 1.8;
}

.disclaimer-text p {
  color: #ffff;
}

/* ===== FIXED BOTTOM CTA (Desktop) ===== */
.fixed-cta-bar {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 9999;
  background: transparent;
  border-radius: 14px;
  padding: 14px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}

.fixed-cta-bar .cta-btn {
  font-family: "Montserrat", sans-serif;
  padding: 14px 40px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.cta-brochure {
  background: linear-gradient(135deg, #b89152, var(--gold-dark));
  color: #fff;
  box-shadow: 0 4px 25px rgba(176, 141, 87, 0.25);
}

.cta-brochure:hover {
  background: linear-gradient(135deg, var(--gold-dark), #b89152);
  color: #fff;
  box-shadow: 0 10px 35px rgba(176, 141, 87, 0.4);
}

.cta-enquire {
  background: linear-gradient(135deg, #b89152, var(--gold-dark));
  color: #fff;
  box-shadow: 0 4px 25px rgba(176, 141, 87, 0.25);
}

.cta-enquire:hover {
  background: linear-gradient(135deg, var(--gold-dark), #b89152);
  box-shadow: 0 10px 35px rgba(176, 141, 87, 0.4);
}

/* ===== MOBILE BOTTOM CTA BAR ===== */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
}

.mobile-cta-btn {
  font-family: "Montserrat", sans-serif;
  flex: 1;
  padding: 13px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
}

.mobile-cta-call {
  background: #3e311e;
  color: #fff !important;
}

.mobile-cta-call:hover {
  background: #4a4a38;
  color: #fff !important;
}

.mobile-cta-enquire {
  background: linear-gradient(135deg, #b89152, #9a7540);
  color: #fff;
}

.mobile-cta-enquire:hover {
  background: linear-gradient(135deg, #c9a063, #b89152);
  color: #fff;
}

/* ===== MOBILE DOWNLOAD BROCHURE SIDE TAB ===== */
.brochure-side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: #fff;
  color: #3e311e;
  padding: 18px 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border-radius: 0px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  transition: background 0.3s ease, padding-right 0.3s ease;
  border: 1px solid #9a7540;
}

.brochure-side-tab:hover {
  background: linear-gradient(to bottom, #c9a063, #b89152);
  padding-right: 13px;
}

@media (max-width: 380px) {
  .mobile-cta-btn {
    padding: 11px 8px;
    font-size: 0.62rem;
    letter-spacing: 0.5px;
    gap: 5px;
  }
}

/* ===== SIDE QUICK ACTIONS ===== */
.side-actions {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  display: none !important;
}

.side-actions a {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.05rem;
  transition: all 0.4s;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.side-actions a:hover {
  background: var(--gold);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(176, 141, 87, 0.35);
  border-color: var(--gold);
}

@media (max-width: 767px) {
  .side-actions {
    display: none;
  }
}

/* ===== PREMIUM MODAL STYLES ===== */
.premium-modal .modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.12),
    0 50px 120px rgba(0, 0, 0, 0.18),
    0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.premium-modal .modal-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-light),
    var(--gold),
    transparent
  );
  border-radius: 24px 24px 0 0;
}

.premium-modal .modal-body {
  padding: 48px 38px;
}

.premium-modal .modal-gold-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 0 auto 25px;
  border-radius: 2px;
}

.premium-modal h3 {
  font-family: "Cinzel", serif;
  font-size: 1.52rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.premium-modal .modal-subtitle {
  font-family: "Montserrat", sans-serif;
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.premium-modal .inputial {
  display: block;
  color: var(--gold-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.premium-modal .form-control {
  background: var(--warm-white);
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  padding: 15px 18px;
  transition: all 0.3s;
}

.premium-modal .form-control::placeholder {
  color: #000;
  opacity: 1;
}

.premium-modal .form-control:focus {
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.08);
  color: var(--text-dark);
}

.premium-modal .btn-close {
  position: absolute;
  top: 18px;
  right: 18px;
  opacity: 0.4;
  z-index: 10;
  transition: opacity 0.3s;
}

.premium-modal .btn-close:hover {
  opacity: 0.8;
}

.premium-modal .form-group {
  margin-bottom: 20px;
}

.premium-modal .input-group {
  display: block;
}

/* ===== OWL CAROUSEL NAV BUTTONS ===== */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: var(--dark) !important;
  border: none !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s !important;
  margin: 0 5px !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  box-shadow: 0 4px 15px rgba(176, 141, 87, 0.3);
}

.owl-carousel .owl-nav button.owl-prev img,
.owl-carousel .owl-nav button.owl-next img {
  width: 14px;
  height: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.owl-carousel .owl-nav button.owl-prev:hover img,
.owl-carousel .owl-nav button.owl-next:hover img {
  opacity: 1;
}

.owl-carousel .owl-nav {
  text-align: center;
  margin-top: 20px;
}

/* ===== FORM SUBMIT BUTTON & VALIDATION ===== */
.btn-form-submit {
  display: block;
  width: 100%;
  padding: 17px 30px;
  margin-top: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #b89152, var(--gold-dark));
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center;
}

.btn-form-submit:hover {
  background: linear-gradient(135deg, var(--gold-dark), #b89152);
  box-shadow: 0 10px 35px rgba(176, 141, 87, 0.3);
  transform: translateY(-2px);
}

.btn-form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-form-submit i {
  margin-left: 6px;
  transition: transform 0.3s;
}

.btn-form-submit:hover i {
  transform: translateX(4px);
}

/* Modal form groups */
.premium-form-group {
  margin-bottom: 20px;
}

/* Validation error styles */
.field-error {
  /* display: block; */
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #d44;
  margin-top: 6px;
  min-height: 18px;
}

.input-error {
  border-color: #d44 !important;
  box-shadow: 0 0 0 3px rgba(221, 68, 68, 0.08) !important;
}

/* Also style the overview and location form errors */
.overview-form-card .field-error,
.loc-form-card .field-error {
  /* display: block; */
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #d44;
  margin-top: 6px;
}

.overview-form-card .input-error,
.loc-form-card .input-error {
  border-color: #d44 !important;
  box-shadow: 0 0 0 3px rgba(221, 68, 68, 0.08) !important;
}

/* Country code select in modal */
.premium-modal .country_code {
  width: 100%;
  padding: 15px 12px;
  background: var(--warm-white);
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 10px;
  color: var(--text-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s;
  appearance: auto;
}

.premium-modal .country_code:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.08);
}

/* ===== RESPONSIVE FINE-TUNING ===== */
@media (max-width: 991px) {
  .sec-overview,
  .sec-experience,
  .sec-connectivity {
    padding: 80px 0;
  }
  .sec-overview h2,
  .sec-experience h2,
  .sec-config h2,
  .sec-amenities h2,
  .sec-connectivity h2,
  .sec-siteplan h2,
  .sec-gallery h2,
  .sec-location h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 767px) {
  .sec-overview,
  .sec-experience,
  .sec-connectivity,
  .sec-config,
  .sec-amenities,
  .sec-siteplan,
  .sec-gallery,
  .sec-about,
  .sec-location {
    padding: 60px 0;
  }
  .sec-overview h2,
  .sec-experience h2,
  .sec-config h2,
  .sec-amenities h2,
  .sec-connectivity h2,
  .sec-siteplan h2,
  .sec-gallery h2,
  .sec-location h2 {
    font-size: 1.52rem;
  }
  .overview-form-card {
    padding: 32px 24px;
    border-radius: 14px;
  }
  .loc-form-card {
    padding: 32px 24px;
    border-radius: 14px;
  }
  .sec-overview .row {
    flex-direction: column-reverse;
  }
  .sec-overview .row > .col-lg-6 {
    margin-top: 30px;
  }
  .sec-overview .row > .col-lg-5 {
    margin-bottom: 0;
  }
}

/* ===== PREMIUM CSS ANIMATIONS ===== */

/* Gold shimmer on section tags */
.sec-tag,
.overview-tag,
.exp-tag,
.config-tag,
.amenity-tag,
.gallery-tag,
.loc-tag {
  background: linear-gradient(135deg, #c9a063, #b89152);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 3s ease-in-out infinite;
}

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

/* Smooth float for form cards */
.overview-form-card,
.loc-form-card {
  animation: gentleFloat 6s ease-in-out infinite;
}

@keyframes gentleFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* Pulse glow on CTA buttons */
.btn-form-submit {
  animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(176, 141, 87, 0.2);
  }
  50% {
    box-shadow: 0 4px 25px rgba(176, 141, 87, 0.4);
  }
}

/* Slide-in gold underline for section headings */
.sec-overview h2,
.sec-experience h2,
.sec-config h2,
.sec-amenities h2,
.sec-connectivity h2,
.sec-gallery h2,
.sec-location h2,
.sec-highlights h2 {
  position: relative;
  display: inline-block;
}

.sec-overview h2::after,
.sec-experience h2::after,
.sec-config h2::after,
.sec-amenities h2::after,
.sec-connectivity h2::after,
.sec-gallery h2::after,
.sec-location h2::after,
.sec-highlights h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c4a265, #d4b87a);
  transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sec-overview h2.aos-animate::after,
.sec-experience h2.aos-animate::after,
.sec-config h2.aos-animate::after,
.sec-amenities h2.aos-animate::after,
.sec-connectivity h2.aos-animate::after,
.sec-gallery h2.aos-animate::after,
.sec-location h2.aos-animate::after,
.sec-highlights h2.aos-animate::after {
  width: 60px;
}

/* Side action buttons bounce */
.side-actions a {
  animation: sideBounce 3s ease-in-out infinite;
}

.side-actions a:nth-child(2) {
  animation-delay: 0.5s;
}

@keyframes sideBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* Fixed CTA enquire pulse */
.cta-enquire,
.mobile-cta-enquire {
  animation: enquirePulse 2s ease-in-out infinite;
}

@keyframes enquirePulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(176, 141, 87, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(176, 141, 87, 0.5);
  }
}
#home .carousel {
    position: relative;
    top: 75px;
}

/* Desktop hero image — fills the full 100vh carousel-item */
.hero-desktop-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Hero badges row */
.hero-slide-text .hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  opacity: 0;
  transform: translateY(25px);
}

.carousel-item.active .hero-slide-text .hero-badges-row {
  animation: heroSlideIn 0.7s ease-out 0.9s forwards;
}

.hero-badge-promo,
.hero-badge-info,
.hero-badge-status,
.hero-badge-timeline {
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 50px;
  white-space: nowrap;
  display: inline-block;
}

.hero-badge-promo {
  background: linear-gradient(135deg, #b89152, #c9a063);
  color: #fff;
  box-shadow: 0 4px 20px rgba(176, 141, 87, 0.45);
}

.hero-badge-info,
.hero-badge-status,
.hero-badge-timeline {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1199px) {
  .hero-badge-promo,
  .hero-badge-info,
  .hero-badge-status,
  .hero-badge-timeline {
    font-size: 0.66rem;
    padding: 8px 16px;
    letter-spacing: 1.4px;
  }
}

@media (max-width: 991px) {
  .hero-badge-promo,
  .hero-badge-info,
  .hero-badge-status,
  .hero-badge-timeline {
    font-size: 0.6rem;
    padding: 7px 13px;
    letter-spacing: 1.1px;
  }
  .hero-slide-text .hero-badges-row {
    gap: 7px;
    margin-top: 18px;
  }
}

.hero-mobile-cta {
  margin-top: 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(25px);
}

.carousel-item.active .hero-slide-text .hero-mobile-cta {
  animation: heroSlideIn 0.7s ease-out 1.1s forwards;
}

@keyframes siteVisitPulse {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(176, 141, 87, 0.5), 0 0 0 0 rgba(201, 160, 99, 0.55);
  }
  50% {
    box-shadow: 0 4px 28px rgba(176, 141, 87, 0.7), 0 0 0 10px rgba(201, 160, 99, 0);
  }
}

.btn-hero-site-visit {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, #b89152, #c9a063);
  color: #fff;
  text-decoration: none;
  animation: siteVisitPulse 1.8s ease-in-out infinite;
  transition: transform 0.2s ease;
}

.btn-hero-site-visit:hover {
  transform: translateY(-2px);
  color: #fff;
  animation-play-state: paused;
}

@media (max-width: 767px) {
  .hero-banner {
    height: auto;
    min-height: unset;
    overflow: visible;
  }
  .hero-banner .carousel-item {
    height: auto;
    min-height: unset;
  }
  #home .carousel {
    top: 0;
  }
  .hero-banner .carousel-item img {
    display: block;
    width: 100%;
    height: auto;
  }

  /* Mobile text overlay positioning */
  .hero-slide-text {
    bottom: 8%;
    padding: 0 16px;
  }
  .hero-slide-text .hero-location {
    font-size: 0.7rem;
    letter-spacing: 3px;
    margin-bottom: 6px;
  }
  .hero-slide-text h1 {
    font-size: 1.45rem;
    margin-bottom: 6px;
    letter-spacing: 0;
  }
  .hero-slide-text .hero-config {
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 0;
  }
  .hero-slide-text .hero-badges-row {
    gap: 6px;
    margin-top: 12px;
  }
  .hero-badge-promo,
  .hero-badge-info,
  .hero-badge-status,
  .hero-badge-timeline {
    font-size: 0.54rem;
    padding: 6px 11px;
    letter-spacing: 0.8px;
  }
}