/* ===================================================
   INSELI PARK – Premium Landing Page Styles
   Brand: Jain Housing & Constructions Ltd.
   Theme: Golden Hour / Sunset Soiree
   =================================================== */

/* ---------- CSS Variables – Sunset Soirée Palette ---------- */
/* Extracted from brochure image:
   Sky Blue:      #4B9EC4 → #62B8D8
   Sunset Amber:  #C8823A → #E8A855
   Cream / Rays:  #EDE0C8
   Dark Warm:     #0D0906
   Teal Swirl:    #5FA8BE
*/
:root {
  /* Primary accent – warm sunset amber */
  --gold: #C8823A;
  --gold-light: #E8A855;
  --gold-dark: #9A5F20;

  /* Sky blue – brochure background top */
  --sky: #4B9EC4;
  --sky-light: #7EC4DC;
  --sky-dark: #2E7A9E;

  /* Neutrals */
  --cream: #F4EDE0;
  --charcoal: #1A1209;
  --dark-bg: #1d233e;
  --section-bg: #F2E8D8;
  --white: #FFFFFF;
  --text-muted: #8A8070;

  /* Borders use amber tint */
  --border-light: rgba(200, 130, 58, 0.22);

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #C8823A 0%, #E8A855 50%, #9A5F20 100%);
  --gradient-sky: linear-gradient(135deg, #4B9EC4 0%, #62B8D8 100%);
  --gradient-sunset: linear-gradient(160deg, #4B9EC4 0%, #7AACBA 40%, #C8823A 80%, #9A5F20 100%);
  --gradient-dark: linear-gradient(160deg, #0D0906 0%, #1c1308 100%);

  --shadow-gold: 0 8px 40px rgba(200, 130, 58, 0.25);
  --shadow-sky: 0 8px 40px rgba(75, 158, 196, 0.25);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark-bg);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ===================================================
   NAVBAR
   =================================================== */
.site-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: var(--dark-bg);
  border-bottom: 1px solid var(--border-light);
}

.site-navbar.scrolled {
  background: var(--dark-bg);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(200, 130, 58, 0.15);
}

.navbar-brand-logo {
  height: 42px;
  filter: brightness(1.1);
  transition: var(--transition);
}

.navbar-brand-logo:hover {
  transform: scale(1.03);
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.navbar-phone:hover {
  color: var(--gold-light);
}

.site-navbar .d-flex {
  position: relative;
}

.nav-links-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 10;
}

.nav-link-item {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none !important;
  position: relative;
  padding: 8px 0;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: var(--transition);
}

.nav-link-item:hover {
  color: var(--gold-light);
}

.nav-link-item:hover::after {
  width: 100%;
}

.navbar-phone svg {
  width: 16px;
  height: 16px;
}

.btn-enquire-nav {
  background: var(--gradient-gold);
  color: var(--dark-bg) !important;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-enquire-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 130, 58, 0.5);
  color: var(--dark-bg) !important;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.hero-picture {
  position: relative;
  width: 100%;
  z-index: 0;
  overflow: hidden;
  line-height: 0;
}

.hero-img {
  width: 100%;
  display: block;
}

/* .hero-img.loaded {
  transform: scale(1);
  opacity: 1;
} */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(13, 9, 6, 0.25) 0%,
      rgba(13, 9, 6, 0.05) 25%,
      rgba(75, 158, 196, 0.08) 50%,
      rgba(200, 130, 58, 0.2) 75%,
      rgba(13, 9, 6, 0.92) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 100px;
  min-height: calc(100vh - 80px);
}

.hero-form-wrap {
  position: absolute;
  top: 5%;
  right: 5%;
  transform: translateY(-50%);
  width: min(90%, 420px);
  z-index: 5;
}

.hero-lead-card {
  padding: 36px 32px;
  background: rgba(9, 8, 10, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.hero-form-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.hero-form-text {
  font-size: 0.92rem;
  color: rgba(244, 237, 224, 0.78);
  margin-bottom: 24px;
}

.hero-form-note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  animation: fadeUp 0.8s 0.3s both;
}

.hero-tagline::before,
.hero-tagline::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
  animation: fadeUp 0.8s 0.5s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
  animation: fadeUp 0.9s 0.7s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-title-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.9s both;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s 1.1s both;
}

.hero-badge {
  background: rgba(200, 130, 58, 0.18);
  border: 1px solid rgba(232, 168, 85, 0.45);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.8s 1.3s both;
}

.btn-primary-gold {
  background: var(--gradient-gold);
  color: var(--dark-bg);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 30px rgba(200, 130, 58, 0.4);
}

.btn-primary-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 130, 58, 0.6);
  color: var(--dark-bg);
}

.btn-outline-gold {
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Hero Price Strip */
.hero-price-strip {
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0; */
  z-index: 3;
  padding: 25px 0;
  background: var(--gradient-gold);
  border-top: 1px solid rgba(200, 130, 58, 0.25);
}

.price-item {
  /* display: flex; */
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  border-right: 1px solid var(--border-light);
}

.price-item:last-child {
  border-right: none;
}

.price-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(75, 158, 196, 0.12);
  border: 1px solid rgba(200, 130, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.price-item-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark-bg);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.price-item-value {
  /* font-family: var(--font-serif); */
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.price-item-value small {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: 4px;
}

/* ===================================================
   SECTION COMMONS
   =================================================== */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
}

.section-title em {
  color: var(--gold-light);
  font-style: italic;
}

.section-title.dark {
  color: var(--charcoal);
}

.section-title.dark em {
  color: var(--gold-dark);
}

.section-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(249, 245, 236, 0.75);
  max-width: 560px;
}

.section-desc.dark {
  color: rgba(26, 26, 26, 0.7);
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-gold);
  margin: 20px 0;
  border: none;
}

/* ===================================================
   ABOUT SECTION
   =================================================== */
.about-section {
  position: relative;
  padding: 80px 0;
  background-image: url('../images/about-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 9, 6, 0.95) 0%, rgb(13 9 6 / 11%) 50%, rgba(13, 9, 6, 0.1) 100%);
  z-index: 1;
}

.about-section .container {
  position: relative;
  z-index: 2;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: rgba(75, 158, 196, 0.04);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-sunset);
  transform: scaleX(0);
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(75, 158, 196, 0.08);
  transform: translateY(-4px);
}

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

.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}

/* ===================================================
   LIFESTYLE CARDS (I See…)
   =================================================== */
.lifestyle-section {
  background: var(--section-bg);
  padding: 80px 0;
  overflow: hidden;
}

.lifestyle-scroll-wrapper {
  overflow: hidden;
}

.lifestyle-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 24px;
}

.lifestyle-track::-webkit-scrollbar {
  display: none;
}

.lifestyle-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  transition: var(--transition);
}

.lifestyle-card:hover {
  transform: scale(1.02);
}

.lifestyle-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.lifestyle-card:hover .lifestyle-card-bg {
  transform: scale(1.08);
}

.lifestyle-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 60%);
}

.lifestyle-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
}

.lifestyle-card-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.lifestyle-card-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.lifestyle-card-subtitle {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  font-style: italic;
}

/* ===================================================
   AMENITIES (Updated to Highlights Layout)
   =================================================== */
.amenities-section {
  background: var(--section-bg);
  padding: 110px 0;
  overflow: hidden;
}

.amenity-highlight-img {
  position: relative;
  border: 1px solid var(--border-light);
  padding: 12px;
  background: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.amenity-highlight-img img {
  width: 100%;
  border-radius: 8px;
  display: block;
}

.highlight-pointers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  border: 1px solid rgba(200, 130, 58, 0.08);
  transition: var(--transition);
}

.highlight-item:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(200, 130, 58, 0.12);
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--dark-bg);
}

.highlight-text {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.2;
}

/* ===================================================
   FLOOR PLANS
   =================================================== */
.floorplan-section {
  background: var(--dark-bg);
  padding: 80px 0;
}

.plan-tab-btn {
  background: transparent;
  border: 1px solid var(--border-light);
  color: rgba(249, 245, 236, 0.6);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}

.plan-tab-btn.active,
.plan-tab-btn:hover {
  background: var(--gradient-gold);
  color: var(--dark-bg);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.floorplan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.floorplan-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.floorplan-img-wrap {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.floorplan-info {
  padding: 24px;
  border-top: 1px solid var(--border-light);
}

.floorplan-bhk {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-light);
}

.floorplan-area {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.floorplan-price {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--cream);
}

/* ===================================================
   WHY INSELI PARK
   =================================================== */
.why-section {
  position: relative;
  padding: 80px 0;
  background-image: url('../images/why-choose-bg.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 9, 6, 0.85);
  /* Dark overlay */
  z-index: 1;
}

.why-section .container {
  position: relative;
  z-index: 2;
}

.why-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-sunset);
  opacity: 0.5;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(75, 158, 196, 0.12);
  transition: var(--transition);
}

.advantage-item:first-child {
  padding-top: 0;
}

.advantage-item:last-child {
  border-bottom: none;
}

.advantage-item:hover {
  padding-left: 8px;
}

.advantage-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky-light);
  flex-shrink: 0;
  margin-top: 8px;
  box-shadow: 0 0 10px rgba(75, 158, 196, 0.5);
}

.advantage-text {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nearby-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(75, 158, 196, 0.05);
  border: 1px solid rgba(75, 158, 196, 0.2);
  border-radius: 4px;
  margin-bottom: 10px;
  transition: var(--transition);
  font-size: 0.88rem;
  color: rgba(244, 237, 224, 0.85);
}

.nearby-item:hover {
  background: rgba(75, 158, 196, 0.12);
  border-color: var(--sky-light);
  transform: translateX(6px);
}

.nearby-item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.proximity-badge {
  background: rgba(200, 130, 58, 0.1);
  border: 1px solid rgba(200, 130, 58, 0.22);
  border-radius: 4px;
  padding: 14px 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.proximity-badge:hover {
  background: rgba(200, 130, 58, 0.18);
}

.proximity-time {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 60px;
  line-height: 1;
}

.proximity-place {
  font-size: 0.82rem;
  color: rgba(249, 245, 236, 0.8);
  font-weight: 500;
}

/* ===================================================
   GALLERY
   =================================================== */
.gallery-section {
  background: var(--dark-bg);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  background: rgba(75, 158, 196, 0.18);
}

.gallery-plus {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-dark);
  transform: scale(0);
  transition: var(--transition);
}

.gallery-item:hover .gallery-plus {
  transform: scale(1);
}

/* ===================================================
   VIDEO SECTION
   =================================================== */
.video-section {
  background: var(--charcoal);
  padding: 80px 0;
}

.video-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.03);
}

.play-btn-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  gap: 16px;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 8px 40px rgba(200, 130, 58, 0.5);
}

.play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--dark-bg);
  margin-left: 4px;
}

.play-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 50px rgba(200, 130, 58, 0.7);
}

.video-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ===================================================
   ENQUIRY FORM
   =================================================== */
.enquiry-section {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* .enquiry-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 158, 196, 0.08) 0%, rgba(200, 130, 58, 0.05) 60%, transparent 80%);
} */

.enquiry-form-card {
  background: rgb(29 35 62 / 64%);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 25px;
  backdrop-filter: blur(10px);
  position: relative;
}

.enquiry-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 40px;
  right: 40px;
  height: 2px;
  background: var(--gradient-sunset);
  border-radius: 0 0 2px 2px;
}

.enquiry-form-card img {
  background: #1d233e;
  padding: 15px;
  margin-bottom: 10px;
}

.form-label-custom {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.form-control-custom {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(75, 158, 196, 0.2);
  border-radius: 4px;
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 14px 18px;
  width: 100%;
  transition: var(--transition);
  outline: none;
}

.form-control-custom:focus {
  border-color: var(--sky-light);
  background: rgba(75, 158, 196, 0.08);
  box-shadow: 0 0 0 3px rgba(75, 158, 196, 0.12);
}

.form-control-custom::placeholder {
  color: rgba(244, 237, 224, 0.35);
}

.form-control-custom option {
  background: #100e0a;
  color: var(--cream);
}

.btn-submit {
  background: var(--gradient-gold);
  color: var(--dark-bg);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 18px 40px;
  border: none;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 30px rgba(200, 130, 58, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200, 130, 58, 0.55);
}

.btn-submit:hover::after {
  opacity: 1;
}

/* ===================================================
   LOCATION
   =================================================== */
.location-section {
  background: var(--section-bg);
  padding: 100px 0;
}

.location-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(75, 158, 196, 0.18);
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--dark-bg);
  padding: 30px 0 30px;
  border-top: 1px solid var(--border-light);
}

.footer-logo {
  height: 48px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-link {
  display: block;
  font-size: 0.84rem;
  color: var(--text-muted);
  padding: 4px 0;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-divider {
  border-color: rgb(140 140 140);
  margin: 40px 0 24px;
}

.footer-bottom {
  font-size: 0.78rem;
  color: var(--white);
}

.footer-bottom a {
  color: var(--gold);
  transition: var(--transition);
}

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

.site-footer .disclaimer {
  color: #fff;
  font-size: 12px;
  text-align: justify;
}

/* ===================================================
   STICKY CTA BAR (Mobile)
   =================================================== */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--section-bg);
  border-top: 1px solid var(--border-light);
  padding: 12px 16px;
  gap: 10px;
}

.sticky-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--transition);
}

.sticky-call {
  background: var(--gradient-gold);
  color: var(--dark-bg) !important;
}

.sticky-enquire {
  background: var(--gradient-gold);
  color: var(--dark-bg) !important;
}

/* ===================================================
   MODAL
   =================================================== */
.modal-content {
  background: #09080a;
  border: 1px solid var(--border-light);
  border-radius: 12px;
}

.modal-header {
  border-bottom: 1px solid var(--border-light);
  padding: 24px 32px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--sky-light);
}

.modal-body {
  padding: 32px;
}

/* Tint close button amber */
.btn-close {
  filter: invert(0.8) sepia(1) saturate(3) hue-rotate(5deg);
}

/* ===================================================
   ANIMATIONS & EFFECTS
   =================================================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal .reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal .reveal-left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal-left.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.reveal-right {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js-reveal .reveal-right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal-right.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.gold-shimmer {
  background: linear-gradient(90deg, #4B9EC4, #E8A855, #C8823A, #4B9EC4);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 991.98px) {
  .hero-section {
    flex-direction: column;
    min-height: auto;
    display: flex;
  }

  .hero-picture {
    position: relative;
    width: 100%;
    height: auto;
    line-height: 0;
  }

  .hero-overlay {
    height: 100%;
    position: absolute;
    inset: 0;
  }

  .hero-content {
    min-height: auto;
    padding: 40px 15px;
    position: relative;
    z-index: 5;
    width: 100%;
  }

  .hero-form-wrap {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 520px;
    margin: -80px auto 0;
  }

  .hero-price-strip .price-item {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }

  .hero-price-strip .price-item:last-child {
    border-bottom: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .enquiry-form-card {
    padding: 32px 24px;
  }
}

@media (max-width: 767.98px) {
  .hero-form-wrap {
    position: relative;
    margin: 0;
    max-width: none;
  }

  .hero-lead-card {
    padding: 28px 20px;
  }

  .hero-form-title {
    font-size: 1.7rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .lifestyle-card {
    flex: 0 0 240px;
    height: 360px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:first-child {
    grid-column: span 1;
  }

  .sticky-cta-bar {
    display: flex;
  }

  body {
    padding-bottom: 72px;
  }

  .hero-bg {
    background-attachment: scroll;
  }

  .why-section .row.g-5 {
    --bs-gutter-y: 2rem;
  }

  .enquiry-form-card {
    padding: 28px 20px;
  }
}

@media (max-width: 575.98px) {
  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary-gold,
  .btn-outline-gold {
    width: 100%;
    justify-content: center;
  }

  /* .hero-price-strip {
    display: none;
  } */
}

/* ===================================================
   LIFESTYLE ARROWS (appended)
   =================================================== */
.lifestyle-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--dark-bg);
  border: 1px solid rgba(75, 158, 196, 0.3);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.lifestyle-arrow:hover {
  background: var(--section-bg);
  color: var(--dark-bg);
  border-color: var(--dark-bg);
}

/* ===================================================
   COMBINED GALLERY & WALKTHROUGH
   =================================================== */
.combined-gallery-section {
  padding: 80px 0;
  background: var(--section-bg);
  overflow: hidden;
}

.gallerySwiper {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
}

.gallery-slide {
  background-position: center;
  background-size: cover;
  width: 600px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.gallery-img-3d {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-slide:hover .gallery-img-3d {
  transform: scale(1.05);
}

/* Nav Arrows for Gallery */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.gallery-prev {
  left: 30px;
}

.gallery-next {
  right: 30px;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.4;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .navbar-brand-logo {
    height: 28px;
  }

  .gallery-slide {
    width: 300px;
    height: 200px;
  }

  .btn-enquire-nav {
    font-size: 12px;
  }

  .enquiry-form-card {
    background-color: var(--section-bg);

  }

  .footer-bottom p {
    text-align: center;
  }

  .about-section::before {
    background: linear-gradient(to right, rgba(13, 9, 6, 0.95) 0%, rgb(13 9 6 / 60%) 50%, rgba(13, 9, 6, 0.1) 100%);
  }
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.video-modal video {
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 35px;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
}


/* ===================================================
   FLOOR PLAN SLIDER
   =================================================== */
.floorplanSwiper {
  padding: 20px 10px 60px;
  position: relative;
}

.floorplan-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.floorplan-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--gold);
}

.floorplan-img-wrap {
  padding: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  overflow: hidden;
}

.floorplan-img-wrap img {
  max-height: 100%;
  width: auto;
  transition: transform 0.5s ease;
}

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

.floorplan-info {
  padding: 25px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.floorplan-bhk {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 5px;
}

.floorplan-area {
  font-size: 0.9rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* Floorplan Nav */
.floorplan-nav {
  position: absolute;
  top: 40%;
  width: 45px;
  height: 45px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floorplan-prev {
  left: 5px;
}

.floorplan-next {
  right: 5px;
}


.floorplan-nav:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(200, 130, 58, 0.4);
}

.floorplan-pagination {
  bottom: 0 !important;
}

@media (max-width: 1200px) {
  .floorplan-prev {
    left: 0;
  }

  .floorplan-next {
    right: 0;
  }
}

.siteplan-img-wrap {
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.siteplan-img-wrap img {
  border: 1px solid var(--gold-light);
  padding: 10px;
  cursor: zoom-in;
  max-height: 80vh;
  object-fit: contain;
}

/* .amenities-bg-number {
  font-family: var(--font-serif);
  font-size: 120px;
  font-style: italic;
  color: rgb(232 170 89 / 60%);
  line-height: 1;
  font-weight: 700;
} */

.selldof .title,
.selldof label {
  display: none !important;
}

.selldof .btn,
.sell_do_ctc_btn,
.selldof .btn,
.sell_do_verify_btn {
  background: var(--gradient-gold) !important;
  color: var(--dark-bg) !important;
  font-family: var(--font-sans);
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 12px 40px !important;
  border: none !important;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 30px rgba(200, 130, 58, 0.35);
  position: relative;
  overflow: hidden;
}

.selldof .form-control,
.sell_do_form_control {
  height: 45px !important;
}