/* ════════════════════════════════════════════════
   ELARA LIVING — style.css
   Luxury Real Estate Landing Page
   Typography: Cormorant Garamond + Jost
   Palette: Deep Navy · Antique Gold · Warm Ivory
════════════════════════════════════════════════ */
/* ── CSS Variables ── */ :root {
  --navy: #0c1628;
  --navy-mid: #162040;
  --navy-soft: #1e3058;
  --gold: #e7c482;
  --gold-lt: #dfc08a;
  --gold-dk: #a07840;
  --ivory: #f9f5ef;
  --ivory-dk: #ede8df;
  --white: #ffffff;
  --text: #3a3a3a;
  --text-lt: #7a7a7a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, .08);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, .15);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, .22);
  --radius: 12px;
  --nav-h: 80px;
}
/* ── Reset / Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* ════════════════════════════════════════════════
   PRELOADER
════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .6s var(--ease-out), visibility .6s;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.25em;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1
  }
  50% {
    opacity: .4
  }
}
.preloader-bar {
  width: 160px;
  height: 2px;
  background: var(--navy-soft);
  margin: 20px auto 0;
  border-radius: 99px;
  overflow: hidden;
}
.preloader-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
  animation: bar 1.4s ease-in-out infinite;
}
@keyframes bar {
  0% {
    width: 0;
    margin-left: 0
  }
  50% {
    width: 100%;
    margin-left: 0
  }
  100% {
    width: 0;
    margin-left: 100%
  }
}
/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
#mainNav {
  height: var(--nav-h);
  background: #000000;
  transition: background .4s, box-shadow .4s, height .4s;
  padding: 0 1rem;
}
#mainNav.scrolled {
  background: rgba(12, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .3);
  height: 68px;
}
/* Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--navy);
  font-size: .9rem;
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .1em;
}
.logo-text span {
  color: var(--gold);
}
/* Nav Links */
.nav-link {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FFFFFF;
  padding: .4rem .7rem !important;
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left .3s, right .3s;
}
.nav-link:hover {
  color: var(--gold) !important;
}
.nav-link:hover::after {
  left: .7rem;
  right: .7rem;
}
/* CTA button in nav */
.btn-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .55rem 1.4rem !important;
  border-radius: 4px;
  transition: background .3s, transform .2s;
}
.btn-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}
/* Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.navbar-toggler:focus {
  box-shadow: none;
}
/* Mobile collapse */
@media(max-width:991px) {
  .navbar-collapse {
    background: rgba(12, 22, 40, 0.98);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: 8px;
  }
  .nav-link {
    padding: .75rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
  .nav-link::after {
    display: none;
  }
  .btn-cta {
    margin-top: 1rem;
    display: inline-block;
  }
}
/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
#hero {
  height: 100vh;
  min-height: 640px;
  position: relative;
}
.hero-wrapper {
  display: flex;
  height: 100%;
  position: relative;
}
/* Carousel fills left portion */
.carousel {
  position: relative;
}
.carousel-inner, .carousel-item {
  height: 100%;
}
.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 22, 40, .88) 0%, rgba(12, 22, 40, .55) 55%, rgba(12, 22, 40, .2) 100%);
}
.hero-text {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 700px;
  animation: heroIn .9s var(--ease-out) both;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(30px)
  }
  to {
    opacity: 1;
    transform: translateY(0)
  }
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}
.hero-text h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-text h1 em {
  color: var(--gold-lt);
  font-style: italic;
}
.hero-sub {
font-size: .95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .8);
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
/* Shared buttons */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .8rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
  transition: background .3s, color .3s, transform .2s;
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-outline-light-custom {
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .8rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, .5);
  transition: border-color .3s, color .3s, transform .2s;
}
.btn-outline-light-custom:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
/* Carousel controls */
.carousel-control-prev, .carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(200, 169, 110, .15);
  border: 1px solid rgba(200, 169, 110, .35);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 1.5rem;
  opacity: 1;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-control-prev i, .carousel-control-next i {
  color: var(--gold);
  font-size: .9rem;
}
.carousel-control-prev:hover, .carousel-control-next:hover {
  background: var(--gold);
}
.carousel-control-prev:hover i, .carousel-control-next:hover i {
  color: var(--navy);
}
/* Custom indicators */
.carousel-indicators-custom {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.carousel-indicators-custom button {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, .35);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s, width .3s;
}
.carousel-indicators-custom button.active {
  background: var(--gold);
  width: 50px;
}
/* ── Enquiry Panel ── */
.enquiry-panel {
  position: absolute;
  right: 3vw;
  top: 56%;
  transform: translateY(-50%);
  width: 360px;
  max-height: calc(100vh - var(--nav-h) - 40px);
  overflow-y: auto;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(200, 169, 110, .3);
  border-radius: 16px;
  padding: 2rem;
  z-index: 20;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}
.enquiry-panel::-webkit-scrollbar {
  width: 4px;
}
.enquiry-panel::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
.enquiry-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.enquiry-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
}
.enquiry-header p {
  font-size: .8rem;
  color: #FFFFFF;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.form-group-custom {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: .75rem 1rem;
  transition: border-color .3s;
}
.form-group-custom:focus-within {
  border-color: var(--gold);
}
.form-group-custom > i {
  color: var(--gold);
  font-size: .85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.form-control-custom {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: .85rem;
  resize: none;
  line-height: 1.5;
}
.form-control-custom::placeholder {
  color: rgba(255, 255, 255, .45);
}
.form-control-custom option {
  background: var(--navy);
  color: var(--white);
}
.btn-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .3s, transform .2s;
  margin-top: .5rem;
}
.btn-form-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}
.btn-form-submit i {
  font-size: .75rem;
}
.form-note {
  text-align: center;
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  margin-top: .75rem;
}
.form-note i {
  margin-right: 4px;
}
/* Hide panel on small screens, show as card below */
@media(max-width:991px) {
  .enquiry-panel {
    position: static;
    transform: none;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: var(--navy-mid);
    border-radius: 0;
    backdrop-filter: none;
    max-height: none;
  }
  .hero-wrapper {
    flex-direction: column;
    height: auto;
  }
	.navbar-brand {
    margin-top: -22px;
    
}
	
  #hero {
    height: auto;
  }
  .carousel {
    height: 100vh;
    min-height: 600px;
    width: 100%;
  }
  .hero-text {
    padding: 0 1.5rem;
  }
  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
/* ════════════════════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════════════════════ */
.section-padding {
  padding: 100px 0;
}
.bg-dark-section {
  background: var(--navy);
}
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-eyebrow.light {
  color: var(--gold-lt);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.section-title.light {
  color: var(--white);
}
.section-subtitle {
  font-size: .95rem;
  color: var(--text-lt);
  max-width: 540px;
  margin: 0 auto;
}
/* ════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════ */
#about {
  background: var(--ivory);
}
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-main-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--navy);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-text {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.about-accent-img {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-md);
}
.about-accent-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0;
}
.vm-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--ivory-dk);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s;
}
.vm-card:hover {
  box-shadow: var(--shadow-md);
}
.vm-card > i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.vm-card strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--navy);
}
.vm-card p {
  font-size: .8rem;
  color: var(--text-lt);
  line-height: 1.5;
  margin: 0;
}
.why-list {
  margin-bottom: 2rem;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--ivory-dk);
  color: var(--text);
}
.why-list li i {
  color: var(--gold);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: .5rem;
}
.stat-box {
  text-align: center;
  padding: 1.2rem .5rem;
  background: var(--navy);
  border-radius: var(--radius);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-box span:not(.stat-num) {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-lt);
}
.stat-box p {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  margin: 6px 0 0;
}
@media(max-width:767px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  .about-badge {
    bottom: -10px;
    left: -10px;
  }
  .about-accent-img {
    display: none;
  }
}
/* ════════════════════════════════════════════════
   HIGHLIGHTS
════════════════════════════════════════════════ */
.highlight-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(200, 169, 110, .15);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .4s, border-color .4s, transform .3s;
  height: 100%;
}
.highlight-card:hover {
  background: rgba(200, 169, 110, .08);
  border-color: rgba(200, 169, 110, .45);
  transform: translateY(-6px);
}
.hc-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(200, 169, 110, .12);
  border: 1px solid rgba(200, 169, 110, .25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  transition: background .3s, transform .3s;
}
.highlight-card:hover .hc-icon-wrap {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1) rotate(-5deg);
}
.highlight-card h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .6rem;
}
.highlight-card p {
  font-size: 20px;
  color: white;
  line-height: 1.7;
}
.hc-number {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(200, 169, 110, .07);
  line-height: 1;
  user-select: none;
  transition: color .3s;
}
.highlight-card:hover .hc-number {
  color: rgba(200, 169, 110, .15);
}
/* ════════════════════════════════════════════════
   AMENITIES
════════════════════════════════════════════════ */
#amenities {
  background: var(--white);
}
.amenity-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ivory-dk);
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.amenity-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.am-img-wrap {
  position: relative;
  overflow: hidden;
  height: 180px;
}
.am-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.amenity-card:hover .am-img-wrap img {
  transform: scale(1.1);
}
.am-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 40, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .3s;
}
.amenity-card:hover .am-overlay {
  opacity: 1;
}
.am-body {
  padding: 1.3rem;
}
.am-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: .5rem;
}
.am-body h5 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.am-body p {
  font-size: .8rem;
  color: var(--text-lt);
  line-height: 1.6;
}
/* ════════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════════ */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
}
.gf-btn {
  padding: .5rem 1.4rem;
  background: transparent;
  border: 1px solid rgba(200, 169, 110, .4);
  color: rgba(255, 255, 255, .7);
  border-radius: 100px;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}
.gf-btn.active, .gf-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.gal-item.tall {
  grid-row: span 2;
}
.gal-item.wide {
  grid-column: span 2;
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease-out);
}
.gal-item:hover img {
  transform: scale(1.08);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 22, 40, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity .3s;
}
.gal-item:hover .gal-overlay {
  opacity: 1;
}
.gal-item.hidden {
  display: none;
}
@media(max-width:991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-item.wide {
    grid-column: span 1;
  }
}
@media(max-width:575px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
  .gal-item.tall {
    grid-row: span 1;
  }
}
/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 28, .92);
  cursor: pointer;
}
.lb-img-wrap {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 88vh;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  z-index: 2;
  background: rgba(200, 169, 110, .15);
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  cursor: pointer;
  font-size: 1rem;
  transition: background .3s;
}
.lb-close {
  top: 1.5rem;
  right: 1.5rem;
}
.lb-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lb-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold);
  color: var(--navy);
}
/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
#testimonials {
  background: var(--ivory);
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--ivory-dk);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
}
.testi-quote {
  font-size: 3rem;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
  margin-bottom: 1rem;
}
.testi-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
}
.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.testi-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-author strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}
.testi-author span {
  font-size: .8rem;
  color: var(--text-lt);
}
.testi-stars {
  color: var(--gold);
  font-size: .75rem;
  margin-top: 4px;
}
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--gold-dk);
  color: var(--gold-dk);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.testi-btn:hover {
  background: var(--gold);
  color: var(--navy);
}
.testi-dots {
  position: static;
  margin: 0;
  display: flex;
  gap: 6px;
}
.testi-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ivory-dk);
  border: none;
  padding: 0;
  transition: background .3s, width .3s;
}
.testi-dots button.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 80px;
}

/* ════════════════════════════════════════════════
   CTA / PARALLAX
════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 120px 0;
  background-image: url('images/gallery/sc.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 22, 40, .92) 0%, rgba(12, 22, 40, .78) 100%);
}
.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.cta-sub {
  font-size: .95rem;
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.2rem;
}
.footer-desc {
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  transition: background .3s, color .3s;
}
.social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.footer-heading {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-links li {
  margin-bottom: .6rem;
}
.footer-links a {
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  transition: color .3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}
.footer-links a:hover {
  color: var(--gold-lt);
}
.footer-contact li {
  display: flex;
  gap: 12px;
  font-size: .85rem;
  margin-bottom: .9rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}
.footer-contact i {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-contact a {
  color: inherit;
  transition: color .3s;
}
.footer-contact a:hover {
  color: var(--gold-lt);
}
.rera-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
  background: rgba(200, 169, 110, .1);
  border: 1px solid rgba(200, 169, 110, .3);
  color: var(--gold-lt);
  padding: .5rem 1rem;
  border-radius: 4px;
  margin-top: .5rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
}
.footer-bottom i {
  color: #e05555;
}
.footer-bottom a {
  color: rgba(255, 255, 255, .5);
  transition: color .3s;
}
.footer-bottom a:hover {
  color: var(--gold-lt);
}
/* ════════════════════════════════════════════════
   FLOATING ELEMENTS
════════════════════════════════════════════════ */
/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 500;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .45);
  transition: transform .3s, box-shadow .3s;
  animation: floatBounce 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, .55);
  color: var(--white);
}
@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0)
  }
  50% {
    transform: translateY(-6px)
  }
}
/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(200, 169, 110, .4);
  color: var(--gold);
  cursor: pointer;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .3s;
  box-shadow: var(--shadow-md);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  color: var(--navy);
}
/* Toast */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  border: 1px solid var(--gold);
  color: var(--white);
  border-radius: 8px;
  padding: .9rem 1.8rem;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity .3s, transform .3s;
  box-shadow: var(--shadow-lg);
}
.toast-notification i {
  color: var(--gold);
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
/* ════════════════════════════════════════════════
   AOS OVERRIDES
════════════════════════════════════════════════ */
[data-aos] {
  transition-timing-function: var(--ease-out) !important;
}
/* ════════════════════════════════════════════════
   RESPONSIVE TWEAKS
════════════════════════════════════════════════ */
@media(max-width:767px) {
  .section-padding {
    padding: 70px 0;
  }
  .cta-section {
    background-attachment: scroll;
  }
  .testi-card {
    padding: 2rem 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
	.hero-text {
    
    padding-top: 50px !important;
}
	
	.preloader-logo {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 6vw, 4rem);

}
	
}
@media(max-width:480px) {
  .hero-btns {
    flex-direction: column;
  }
  .btn-gold, .btn-outline-light-custom {
    text-align: center;
  }
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
}