@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg-primary: #faf8f5; 
  --bg-secondary: #f3f0e8; 
  --bg-dark: #0f0f10; 
  --bg-card-light: #ffffff;
  --bg-card-glass: rgba(255, 255, 255, 0.85);
  --text-dark: #161616; 
  --text-light: #ffffff; 
  --text-muted: #6e6d6a; 
  --accent-red: #b82326; 
  --accent-red-hover: #91181a;
  --accent-gold: #C89B3C; 
  --accent-gold-gradient: linear-gradient(135deg, #EAD096 0%, #C89B3C 50%, #A0741E 100%);
  --border-light: rgba(22, 22, 22, 0.08);
  --border-gold-glass: 1px solid rgba(200, 155, 60, 0.28);
  --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.1), 0 0 25px rgba(200, 155, 60, 0.15);
  --font-family: 'Outfit', 'Plus Jakarta Sans', 'Inter', sans-serif;
  --transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  --radius-card: 24px;
  --radius-pill: 50px;
  --container-width: 1280px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-dark);
}

body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-glow-1 {
  position: fixed;
  top: -10%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.bg-glow-2 {
  position: fixed;
  bottom: 10%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(184, 35, 38, 0.05) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.header-glass {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header-glass.scrolled {
  background: rgba(15, 15, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-light);
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
}

.nav-logo-badge {
  width: 40px;
  height: 40px;
  background: var(--accent-gold-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(200, 155, 60, 0.3);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
}

.nav-logo-sub {
  font-size: 11px;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-glass-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.btn-glass-call:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.btn-glass-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--accent-red);
  border: none;
  border-radius: var(--radius-pill);
  color: #ffffff;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184, 35, 38, 0.4);
  transition: var(--transition);
}

.btn-glass-enquire:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(184, 35, 38, 0.5);
}


.hero-glass-section {
  position: relative;
  min-height: 88vh;
  padding-top: 150px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(15, 15, 16, 0.45) 0%, rgba(15, 15, 16, 0.80) 100%), url('/dlf-hamilton-court-2/images/gallery1.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  color: #ffffff;
}

.hero-badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(200, 155, 60, 0.15);
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 30px;
  color: var(--accent-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-title .red-text {
  color: #ffffff;
}

.hero-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-highlights-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.hero-stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 16px;
  border-radius: 14px;
}

.hero-stat-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.hero-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.glass-form-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: var(--border-gold-glass);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  color: var(--text-dark);
}

.form-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-card-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.glass-input-group {
  margin-bottom: 14px;
}

.glass-input {
  width: 100%;
  padding: 13px 16px;
  background: #f8f8f8;
  border: 1px solid #e2e2e2;
  border-radius: 12px;
  color: var(--text-dark);
  font-family: var(--font-family);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.glass-input::placeholder {
  color: var(--text-muted);
}

.glass-input:focus {
  background: #ffffff;
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(184, 35, 38, 0.1);
}

.btn-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent-red);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(184, 35, 38, 0.3);
  transition: var(--transition);
  margin-top: 6px;
}

.btn-form-submit:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
}

.section-padding {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--text-dark);
}

.section-title .red-text {
  color: var(--accent-red);
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.overview-glass-card {
  background: var(--bg-card-light);
  backdrop-filter: blur(16px);
  border: var(--border-gold-glass);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
}

.overview-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(184, 35, 38, 0.08);
  border: 1px solid rgba(184, 35, 38, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.overview-img-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: var(--border-gold-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.overview-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.overview-img-frame:hover img {
  transform: scale(1.03);
}

.luxury-pricing-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1060px;
  margin: 0 auto;
}

.luxury-price-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: rgba(18, 19, 24, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.luxury-price-card.popular {
  border: 2px solid var(--accent-gold);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(200, 155, 60, 0.22);
}

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

.price-popular-ribbon {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--accent-gold-gradient);
  color: #000000;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  z-index: 10;
  box-shadow: 0 6px 18px rgba(200, 155, 60, 0.45);
}

.price-card-image {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-top-left-radius: 23px;
  border-bottom-left-radius: 23px;
}

.price-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.luxury-price-card:hover .price-card-image img {
  transform: scale(1.06);
}

.price-img-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.1em;
}

.price-img-tag.gold {
  color: var(--accent-gold);
  border-color: rgba(200, 155, 60, 0.4);
}

.price-card-details {
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
}

.price-header-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-card-title {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.price-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.price-tag-amount {
  text-align: right;
}

.price-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

.price-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-red);
}

.price-value.gold {
  color: var(--accent-gold);
}

.price-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.spec-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
}

.spec-lbl {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.spec-val {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffffff;
}

.price-highlights-list {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-highlights-list li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.amenity-glass-card {
  background: var(--bg-card-light);
  backdrop-filter: blur(12px);
  border: var(--border-gold-glass);
  border-radius: 18px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.amenity-glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.amenity-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: rgba(184, 35, 38, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
}

.amenity-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.amenity-desc {
  font-size: 12.5px;
  color: var(--text-muted);
}

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

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: var(--border-gold-glass);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  background: #111111;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-card.span-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card.span-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-card.span-tall {
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.6s ease;
}

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

.gallery-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 15, 16, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 155, 60, 0.4);
  color: var(--accent-gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(10, 11, 14, 0.88) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 3;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 48px;
  height: 48px;
  background: rgba(200, 155, 60, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transform: scale(0.7);
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(200, 155, 60, 0.4);
}

.gallery-card:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-caption-wrap {
  margin-top: auto;
}

.gallery-caption {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.gallery-sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-top: 2px;
}

.gallery-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 25px rgba(200, 155, 60, 0.2);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.location-map-frame {
  border-radius: 24px;
  overflow: hidden;
  border: var(--border-gold-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.location-map-frame img {
  width: 100%;
  display: block;
}

.location-points-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-point-card {
  background: var(--bg-card-light);
  border: var(--border-gold-glass);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.location-point-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.location-point-info p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.location-time-badge {
  background: rgba(184, 35, 38, 0.08);
  color: var(--accent-red);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
}

/* FAQ Glass Accordion */
.faq-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card-light);
  backdrop-filter: blur(12px);
  border: var(--border-gold-glass);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.faq-question {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.active .faq-body {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* Luxury Modal Popup Form */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 9, 11, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%) scale(0.95);
  width: 90%;
  max-width: 450px;
  background: rgba(18, 19, 24, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(200, 155, 60, 0.4);
  border-radius: 24px;
  padding: 36px 30px 32px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 40px rgba(200, 155, 60, 0.18);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  color: #ffffff;
}

.modal-card.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.modal-close:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: rotate(90deg);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 155, 60, 0.12);
  border: 1px solid rgba(200, 155, 60, 0.35);
  padding: 4px 14px;
  border-radius: 30px;
  color: var(--accent-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.modal-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.modal-input-icon {
  position: absolute;
  left: 16px;
  color: var(--accent-gold);
  pointer-events: none;
}

.modal-input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.modal-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.modal-input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(200, 155, 60, 0.25);
}

.modal-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23C89B3C' stroke-width='2' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.modal-select option {
  background: #14151a;
  color: #ffffff;
  padding: 10px;
}

.modal-btn-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--accent-red);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(184, 35, 38, 0.4);
  transition: all 0.25s ease;
  margin-top: 6px;
}

.modal-btn-submit:hover {
  background: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(184, 35, 38, 0.5);
}

.footer-glass {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 50px 0 30px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-contact-lbl {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-phone-link {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.footer-phone-link:hover {
  color: #ffffff;
  transform: scale(1.04);
}

.footer-disclaimer {
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 85vw;
  max-height: 85vh;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 75vh;
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.9), 0 0 30px rgba(200, 155, 60, 0.2);
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  background: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 155, 60, 0.3);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: center;
}

.lightbox-caption strong {
  color: var(--accent-gold);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10002;
  transition: all 0.25s ease;
}

.lightbox-close:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-nav:hover {
  background: var(--accent-gold-gradient);
  border-color: var(--accent-gold);
  color: #000000;
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 10px 25px rgba(200, 155, 60, 0.4);
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet Responsiveness
   ========================================================================== */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .hero-grid, .overview-grid, .location-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-title {
    font-size: 38px;
  }

  .luxury-price-card {
    grid-template-columns: 1fr;
  }

  .price-card-image {
    min-height: 220px;
  }

  .price-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid, .gallery-grid, .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .nav-links {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .header-glass {
    padding: 12px 0;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-text-dlf {
    font-size: 15px;
  }

  .logo-text-name {
    font-size: 12px;
  }

  .btn-glass-call {
    font-size: 11px;
    padding: 6px 10px;
  }

  .nav-actions .btn-glass-enquire {
    display: none !important;
  }

  .hero-glass-section {
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-badge-tag {
    margin: 0 auto 12px;
  }

  .hero-title {
    text-align: center;
    font-size: 26px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    text-align: center;
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .hero-cta-group {
    justify-content: center;
    width: 100%;
  }

  .hero-highlights-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 20px;
  }

  .hero-stat-box {
    padding: 8px 6px;
    border-radius: 10px;
    text-align: center;
  }

  .hero-stat-val {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
  }

  .hero-stat-lbl {
    font-size: 10.5px;
    line-height: 1.15;
  }

  .hero-glass-card,
  .glass-form-card {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .form-card-title {
    font-size: 18px;
    margin-bottom: 4px;
  }

  .form-card-sub {
    font-size: 11.5px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .glass-input-group {
    margin-bottom: 10px;
  }

  .glass-input {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
  }

  .btn-form-submit {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 10px;
  }

  .section-title {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .section-label {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .price-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .price-tag-amount {
    font-size: 20px;
    text-align: left;
  }

  /* Pricing section — horizontal slidable scroll on mobile */
  .luxury-pricing-container {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    padding: 10px 0 18px;
    scrollbar-width: none;
  }

  .luxury-pricing-container::-webkit-scrollbar {
    display: none;
  }

  .luxury-price-card {
    flex: 0 0 82vw;
    max-width: 340px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    min-height: unset;
  }

  .price-card-image {
    min-height: 160px;
    max-height: 160px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0;
  }

  .price-card-details {
    padding: 14px 14px;
  }

  .price-card-title {
    font-size: 16px;
    margin-bottom: 2px;
  }

  .price-card-sub {
    font-size: 11px;
  }

  .price-value {
    font-size: 17px;
  }

  .price-label {
    font-size: 9px;
  }

  .price-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    margin: 10px 0;
  }

  .spec-pill {
    padding: 6px 8px;
    border-radius: 8px;
  }

  .spec-lbl {
    font-size: 9px;
  }

  .spec-val {
    font-size: 11px;
  }

  .price-highlights-list {
    font-size: 11px;
    gap: 4px;
    margin-bottom: 12px;
  }

  .price-highlights-list li {
    font-size: 11px;
    padding: 0;
    margin-bottom: 4px;
  }

  .price-card-actions .btn-form-submit {
    padding: 9px 14px;
    font-size: 12px;
  }

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

  .gallery-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 10px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 10px 16px 20px 16px;
    width: calc(100% + 32px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-card,
  .gallery-card.span-large,
  .gallery-card.span-wide,
  .gallery-card.span-tall {
    flex: 0 0 270px;
    max-width: 270px;
    height: 220px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
    box-sizing: border-box;
  }

  .amenities-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 12px;
    margin-left: -16px;
    margin-right: -16px;
    padding: 10px 16px 20px 16px;
    width: calc(100% + 32px);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
  }

  .amenities-grid::-webkit-scrollbar {
    display: none;
  }

  .amenity-glass-card,
  .amenity-card {
    flex: 0 0 220px;
    max-width: 220px;
    padding: 20px 16px;
    border-radius: 18px;
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .amenity-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
  }

  .amenity-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .amenity-desc {
    font-size: 12px;
    line-height: 1.4;
  }

/* Premium Glassmorphic Fixed Right-Side Action Bar */
.floating-right-widget {
  position: fixed;
  right: 0;
  top: 77%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 9999;
}

.floating-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 10px 10px 10px;
  border-radius: 14px 0 0 14px;
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-family);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  min-width: 52px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-right: none;
  cursor: pointer;
  box-shadow: -4px 8px 22px rgba(0, 0, 0, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-btn.whatsapp-btn {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.95) 0%, rgba(18, 140, 126, 0.98) 100%);
  box-shadow: -4px 8px 22px rgba(37, 211, 102, 0.35);
}

.floating-btn.enquire-btn {
  background: linear-gradient(135deg, rgba(184, 35, 38, 0.95) 0%, rgba(138, 21, 24, 0.98) 100%);
  box-shadow: -4px 8px 22px rgba(184, 35, 38, 0.4);
}

.floating-btn:hover {
  transform: translateX(-6px);
}

@media screen and (min-width: 769px) {
  .floating-right-widget {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .location-map-wrap {
    height: 240px;
    border-radius: 16px;
  }

  .floating-right-widget {
    top: 80%;
    gap: 6px;
  }

  .floating-btn {
    padding: 10px 8px 8px 8px;
    font-size: 9.5px;
    gap: 4px;
    border-radius: 12px 0 0 12px;
    min-width: 46px;
  }

  .floating-btn svg {
    width: 16px;
    height: 16px;
  }
}
}

@media screen and (max-width: 480px) {
  .hero-glass-card,
  .glass-form-card {
    padding: 14px 12px;
    border-radius: 16px;
  }

  .form-card-title {
    font-size: 16px;
  }

  .form-card-sub {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .glass-input {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 8px;
  }

  .btn-form-submit {
    padding: 9px 14px;
    font-size: 12px;
    border-radius: 8px;
  }

  .section-title {
    font-size: 20px;
  }

  .hero-highlights-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .hero-stat-box {
    padding: 6px 4px;
    border-radius: 8px;
  }

  .hero-stat-val {
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 1px;
  }

  .hero-stat-lbl {
    font-size: 9.5px;
    line-height: 1.15;
  }

  .price-specs-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.span-large,
  .gallery-card.span-wide,
  .gallery-card.span-tall {
    flex: 0 0 78vw;
    max-width: 270px;
    height: 210px;
  }

  .amenity-glass-card,
  .amenity-card {
    flex: 0 0 72vw;
    max-width: 220px;
    padding: 18px 14px;
  }
}

/* Guarantee Hide Sticky Action Bars and Floating Widgets on Desktop Screens */
@media screen and (min-width: 769px) {
  .sticky-action-bar,
  .floating-right-widget {
    display: none !important;
  }
}
