
:root {
  --bg-dark: #FFFFFF;
  --bg-section-alt: #F8FAFC;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --bg-modal: rgba(255, 255, 255, 0.95);

  --gold-primary: #C59B27;
  --gold-light: #D4AF37;
  --gold-dark: #9E771E;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B88939 100%);
  --gold-gradient-hover: linear-gradient(135deg, #E5C158 0%, #C59B27 100%);
  --gold-glow: rgba(197, 155, 39, 0.2);
  --gold-glow-intense: rgba(197, 155, 39, 0.4);

  --text-main: #0F172A;
  --text-muted: #475569;
  --text-dim: #64748B;

  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-bg-hover: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(15, 23, 42, 0.08);
  --glass-border-gold: rgba(197, 155, 39, 0.35);
  --glass-blur: blur(24px);
  --glass-blur-heavy: blur(40px);
  --glass-shadow: 0 20px 50px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --glass-shadow-gold: 0 20px 50px rgba(197, 155, 39, 0.15), inset 0 1px 1px rgba(255, 255, 255, 1);

  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-title: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.25s var(--ease-out);
  --transition-normal: 0.4s var(--ease-out);
  --transition-slow: 0.8s var(--ease-out);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

.header-navbar,
.floating-action-bar,
.modal-backdrop,
.auto-popup-content,
.mobile-nav-overlay {
  transform: translateZ(0);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.gallery-slider-track,
.floorplan-cards-grid,
.highlights-grid,
.tower-tabs {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  bottom: -20%;
  right: -10%;
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(148, 163, 184, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: -2;
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: rgba(197, 155, 39, 0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(197, 155, 39, 0.7);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--text-main);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-text-bright {
  color: var(--gold-primary);
  text-shadow: 0 0 15px rgba(197, 155, 39, 0.2);
}

.titanium-text {
  background: linear-gradient(180deg, #0F172A 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid var(--glass-border-gold);
  color: var(--gold-primary);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 8px var(--gold-primary);
}

.section-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 3rem;
  font-weight: 400;
}

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.container {
  width: 90%;
  max-width: 1320px;
  margin: 0 auto;
}

.glass-card {
  background: var(--bg-card);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-25deg);
  transition: left 0.8s var(--ease-out);
}

.glass-card:hover::before {
  left: 200%;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(197, 155, 39, 0.4);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12), 0 0 25px rgba(197, 155, 39, 0.2);
  background: var(--bg-card-hover);
}

.glass-card-interactive {
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(197, 155, 39, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
  background: var(--gold-gradient-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(197, 155, 39, 0.5);
  color: #FFFFFF;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-main);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
}

.btn-secondary:hover {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
}

.btn-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(197, 155, 39, 0.25);
  border-radius: 0;
  padding: 8px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-normal);
}

.header-navbar.scrolled {
  top: 0;
  padding: 6px 5%;
  background: rgba(15, 23, 42, 0.92);
  border-bottom-color: rgba(197, 155, 39, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  max-height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

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

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

.nav-actions .btn {
  padding: 10px 22px;
  font-size: 0.825rem;
}

.phone-quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid var(--glass-border-gold);
  transition: all var(--transition-fast);
}

.phone-quick-link:hover {
  background: rgba(197, 155, 39, 0.2);
  color: var(--gold-dark);
  box-shadow: 0 0 15px rgba(197, 155, 39, 0.25);
}

.mobile-toggle {
  display: none;
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid var(--glass-border-gold);
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: all 0.25s ease;
}

.mobile-toggle:hover {
  background: rgba(197, 155, 39, 0.2);
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(197, 155, 39, 0.3);
  transform: scale(1.05);
}

.menu-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.menu-bars span {
  display: block;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.menu-bars span:nth-child(1) {
  width: 100%;
}

.menu-bars span:nth-child(2) {
  width: 65%;
  margin-left: auto;
  background: var(--gold-primary);
}

.menu-bars span:nth-child(3) {
  width: 100%;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  backdrop-filter: blur(40px);
  z-index: 2500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.25rem 1.5rem 1.5rem 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(-10px);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(197, 155, 39, 0.25);
}

.mobile-nav-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.mobile-nav-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  border: none;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(197, 155, 39, 0.4);
  transition: transform 0.25s ease;
}

.mobile-nav-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-main);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.mobile-nav-links a .num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
}

.mobile-nav-links a:hover, .mobile-nav-links a:active {
  color: var(--gold-primary);
  transform: translateX(6px);
}

.mobile-nav-footer {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(197, 155, 39, 0.25);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 65px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: #FFFFFF;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-media img,
.hero-bg-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: brightness(1.05) contrast(1.02);
  transition: transform 10s ease-out;
}

.hero-gradient-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.hero-body-content {
  margin-top: auto;
  margin-bottom: 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-badge-group {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 24px;
  border-radius: 50px;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(253, 237, 169, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  margin: 0 auto 0.75rem auto;
  animation: floatBadge 4s ease-in-out infinite alternate;
}

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

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
}

.hero-badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fdeda9;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-header-glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 1.5rem 2.2rem;
  margin: 0 auto;
  max-width: 850px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
  color: #fdeda9;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  text-align: center;
}

.hero-section .gold-text,
.hero-title .gold-text {
  background: none;
  -webkit-text-fill-color: #fdeda9;
  color: #fdeda9;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #FFFFFF;
  font-weight: 500;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 0.75rem;
  width: 100%;
}

.stat-glass-card {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2), inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  transition: all var(--transition-normal);
}

.stat-glass-card:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(253, 237, 169, 0.7);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(253, 237, 169, 0.3), inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fdeda9;
  line-height: 1.15;
}

.stat-label {
  font-size: 0.7rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: 2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--gold-primary);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(15, 23, 42, 0.2);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold-primary);
  animation: scrollAnim 2s infinite;
}

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

/* ==========================================================================
   OVERVIEW & LANDMARK STORY SECTION
   ========================================================================== */

.overview-section {
  padding: 50px 0;
  position: relative;
  background: #FFFFFF;
}

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

.overview-text-content h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.overview-paragraph {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.highlight-check-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.highlight-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.check-icon-box {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.15);
  border: 1px solid var(--glass-border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.overview-visual-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.1);
  border: 1px solid var(--glass-border);
}

.overview-visual-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
  transition: transform 0.8s var(--ease-out);
}

.overview-visual-card:hover img {
  transform: scale(1.04);
}

.visual-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border-gold);
  border-radius: 14px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.visual-floating-badge .badge-label {
  font-size: 0.72rem;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.visual-floating-badge .badge-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}


.highlights-section {
  padding: 50px 0;
  position: relative;
  background: var(--bg-section-alt);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.highlight-card {
  display: flex;
  flex-direction: column;
  height: auto;
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
}

.highlight-card h3 {
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}


.pricing-section {
  padding: 50px 0;
  position: relative;
  background: #FFFFFF;
}

.pricing-table-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
  padding: 1.5rem;
  margin-top: 2.5rem;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th {
  background: #F8FAFC;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-table td {
  padding: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-main);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  vertical-align: middle;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.04);
}

.pricing-table .price-val {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 1.25rem;
}

.pricing-table .btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.82rem;
  display: inline-block;
  width: auto;
}

.pricing-card {
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card.featured {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF8 100%);
  border-color: var(--glass-border-gold);
  box-shadow: var(--glass-shadow-gold);
}

.featured-ribbon {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 10px rgba(197, 155, 39, 0.35);
}

.residence-header {
  margin-bottom: 0.65rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}

.residence-type {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-main);
  line-height: 1.2;
}

.residence-size {
  font-size: 0.82rem;
  color: var(--gold-primary);
  font-weight: 700;
}

.residence-price-box {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.price-label {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.price-value {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.1;
}

.pricing-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 1rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.08);
}

.pricing-feature-item span.val {
  color: var(--text-main);
  font-weight: 600;
}


.floorplans-section {
  padding: 50px 0;
  position: relative;
  background: var(--bg-section-alt);
}

.tower-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 3rem;
}

.tab-btn {
  padding: 14px 32px;
  border-radius: 50px;
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
}

.tab-btn:hover {
  color: var(--text-main);
  border-color: rgba(197, 155, 39, 0.4);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px rgba(197, 155, 39, 0.35);
}

.floorplan-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.floorplan-card {
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
}

.floorplan-card:hover {
  border-color: var(--glass-border-gold);
  transform: translateY(-6px);
  box-shadow: var(--glass-shadow-gold);
}

.floorplan-img-container {
  width: 100%;
  height: 280px;
  border-radius: 20px;
  background: #F8FAFC;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}

.floorplan-img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.floorplan-img-container:not(.unlocked) img {
  filter: blur(14px) brightness(0.65);
  pointer-events: none;
  user-select: none;
}

.floorplan-img-container:not(.unlocked) .floorplan-zoom-overlay {
  display: none !important;
}

.floorplan-img-container.unlocked img {
  filter: none !important;
}

.floorplan-img-container:hover img {
  transform: scale(1.08);
}

.floorplan-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.floorplan-img-container:hover .floorplan-zoom-overlay {
  opacity: 1;
}

.floorplan-gate-overlay {
  position: absolute;
  inset: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  transition: opacity 0.5s var(--ease-out), visibility 0.5s var(--ease-out);
}

.floorplan-img-container.unlocked .floorplan-gate-overlay {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floorplan-gate-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  padding: 14px 16px;
  width: 100%;
  max-width: 250px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(197, 155, 39, 0.35);
}

.gate-icon {
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 4px;
}

.gate-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 2px;
}

.gate-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.gate-unlock-btn {
  padding: 9px 16px;
  font-size: 0.8rem;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(197, 155, 39, 0.3);
}

.tower-plans-group:not(.active) {
  display: none;
  opacity: 0;
}

.floorplan-info {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.floorplan-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-main);
}

.floorplan-tag {
  font-size: 0.8rem;
  color: var(--gold-primary);
  background: rgba(197, 155, 39, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid var(--glass-border-gold);
  font-weight: 600;
}


.gallery-section {
  padding: 50px 0;
  position: relative;
  background: #FFFFFF;
}

.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.filter-btn:hover, .filter-btn.active {
  background: rgba(197, 155, 39, 0.15);
  border-color: var(--glass-border-gold);
  color: var(--gold-dark);
}

.gallery-slider-wrapper {
  position: relative;
  width: 100%;
  padding: 0 10px;
}

.gallery-slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px;
}

.gallery-slider-track::-webkit-scrollbar {
  display: none;
}

.gallery-item {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 320px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  transition: all var(--transition-normal);
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  border: none;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.25), 0 0 0 2px rgba(255, 255, 255, 0.9);
  z-index: 25;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-nav-btn:hover {
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.5), 0 0 0 2px #FFFFFF;
}

.gallery-nav-btn.prev-btn {
  left: 12px;
}

.gallery-nav-btn.next-btn {
  right: 12px;
}

@media (max-width: 992px) {
  .gallery-item {
    flex: 0 0 calc(50% - 10px);
    min-width: 260px;
    height: 320px;
  }
}

@media (max-width: 600px) {
  .gallery-item {
    flex: 0 0 85%;
    min-width: 240px;
    height: 280px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

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

.gallery-overlay {
  display: none !important;
}

.gallery-caption {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #FFF;
}

.gallery-category {
  font-size: 0.8rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.location-section {
  padding: 30px 0;
  position: relative;
  background: #FFFFFF;
}

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

.location-section .section-subtitle {
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
}

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

.location-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 12px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: all var(--transition-normal);
}

.location-card-item:hover {
  background: #FFFFFF;
  border-color: var(--glass-border-gold);
  transform: translateX(8px);
  box-shadow: var(--glass-shadow-gold);
}

.location-icon-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid var(--glass-border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.location-info h4 {
  font-size: 0.9rem;
  color: var(--text-main);
  margin-bottom: 1px;
  line-height: 1.2;
}

.location-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.location-map-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border-gold);
  box-shadow: var(--glass-shadow);
  height: 460px;
}

.location-map-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.95);
  transition: transform 0.6s var(--ease-out);
}

.location-map-wrapper:hover img {
  transform: scale(1.03);
}

.about-section {
  padding: 30px 0;
  position: relative;
  background: #FFFFFF;
}

.about-glass-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  border: 1px solid var(--glass-border-gold);
  border-radius: 24px;
  padding: 2rem 2.2rem;
  box-shadow: var(--glass-shadow-gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-glass-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(197, 155, 39, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about-title {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 0.65rem;
}

.about-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 1.25rem auto;
  line-height: 1.6;
}

.about-glass-box .section-tag {
  margin-bottom: 1rem;
}

.about-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.about-glass-box .btn {
  padding: 9px 20px;
  font-size: 0.825rem;
  border-radius: 12px;
}


.faq-section {
  padding: 50px 0;
  position: relative;
  background: var(--bg-section-alt);
}

.faq-accordion-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-card {
  background: #FFFFFF;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
  transition: all var(--transition-normal);
}

.faq-card:hover {
  border-color: rgba(197, 155, 39, 0.35);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: transparent;
  color: var(--text-main);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(197, 155, 39, 0.1);
  border: 1px solid var(--glass-border-gold);
  position: relative;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--gold-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Horizontal line */
.faq-icon::before {
  width: 14px;
  height: 2px;
}

/* Vertical line */
.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-card.open .faq-icon {
  background: var(--gold-primary);
  border-color: var(--gold-primary);
  transform: rotate(180deg);
}

.faq-card.open .faq-icon::before,
.faq-card.open .faq-icon::after {
  background: #FFFFFF;
}

.faq-card.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding: 0 28px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-card.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}


.contact-section {
  padding: 50px 0;
  position: relative;
  background: #FFFFFF;
}

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

.contact-info-glass {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(197, 155, 39, 0.12);
  border: 1px solid var(--glass-border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 1px;
}

.contact-detail-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.phone-number-large {
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  color: var(--gold-dark) !important;
  line-height: 1.25;
  margin-top: 2px;
}

.phone-number-large a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.phone-number-large a:hover {
  color: var(--gold-primary);
}

.luxury-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--glass-border-gold);
  border-radius: 20px;
  padding: 1.35rem 1.4rem;
  box-shadow: var(--glass-shadow-gold);
  max-width: 100%;
  width: 100%;
}

.luxury-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.luxury-form-card .btn {
  width: 100%;
}

.form-group {
  margin-bottom: 0.85rem;
  position: relative;
}

.form-input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  background: #F8FAFC;
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-size: 0.88rem;
  transition: all var(--transition-fast);
}

.form-input:focus {
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(197, 155, 39, 0.15);
}

.form-input::placeholder {
  color: var(--text-dim);
}

.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold-primary);
  border-radius: 18px;
  padding: 18px 26px;
  color: var(--text-main);
  box-shadow: var(--glass-shadow-gold);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition-normal);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-notification .toast-icon {
  font-size: 1.4rem;
}


.floating-action-bar {
  position: fixed;
  bottom: 0;
  right: 20px;
  left: auto;
  transform: translateZ(0);
  z-index: 9999;
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: var(--glass-blur-heavy);
  border: 1px solid var(--glass-border-gold);
  border-bottom: none;
  padding: 8px 14px 6px 14px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: 0 -5px 25px rgba(15, 23, 42, 0.15), 0 0 15px rgba(197, 155, 39, 0.2);
}

.floating-btn {
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(30px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  background: #FFFFFF;
  border: 1px solid var(--glass-border-gold);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--glass-shadow-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
}

#modalCaption {
  display: none;
}

.footer-copyright {
  margin-top: 8px;
  color: var(--gold-primary);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 100;
}

.modal-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(197, 155, 39, 0.6);
}

.modal-img-display {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 18px;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #FDEDA9;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition-fast);
  z-index: 100;
}

.modal-prev-btn {
  left: 12px;
}

.modal-next-btn {
  right: 12px;
}

.modal-nav-btn:hover {
  background: var(--gold-primary);
  color: #FFFFFF;
  border-color: var(--gold-primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(197, 155, 39, 0.5);
}

.auto-popup-content {
  width: 90%;
  max-width: 390px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(197, 155, 39, 0.3);
  text-align: left;
  position: relative;
  animation: modalPop 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.92) translateY(15px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 12px rgba(197, 155, 39, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 100;
}

.popup-close-btn:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 16px rgba(197, 155, 39, 0.6);
}

.auto-popup-header {
  margin-bottom: 0.85rem;
  text-align: center;
}

.popup-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  background: rgba(197, 155, 39, 0.12);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
  border: 1px solid rgba(197, 155, 39, 0.25);
}

.popup-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 4px;
}

.popup-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.auto-popup-form .form-group {
  margin-bottom: 0.6rem;
}

.auto-popup-form .form-label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 3px;
}

.auto-popup-form .form-input {
  width: 100%;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-main);
  background: #F8FAFC;
  transition: all 0.2s ease;
}

.auto-popup-form .form-input:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(197, 155, 39, 0.15);
}

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 10px;
  margin-top: 6px;
  cursor: pointer;
}

.popup-privacy {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 8px;
}

.footer-section {
  padding: 40px 0 24px 0;
  background: #F8FAFC;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.85rem;
  display: block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 360px;
}

.footer-column h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a, .footer-links span {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  padding-top: 0;
  border-top: none;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.6;
}


@media (max-width: 1024px) {
  .overview-grid, .location-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .overview-visual-card {
    border-radius: 20px;
  }

  .overview-visual-card img {
    height: 230px !important;
    border-radius: 20px;
  }

  p, .section-subtitle, .overview-paragraph, .about-desc, .highlight-card p, .location-info p, .footer-brand p, .footer-bottom p {
    text-align: justify;
  }

  section {
    padding: 35px 0 !important;
  }

  .container {
    width: 92%;
    padding: 0 4px;
  }

  .header-navbar {
    padding: 10px 16px;
  }

  .logo-img {
    height: 32px;
  }

  .nav-links, .phone-quick-link {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .section-title {
    font-size: 1.6rem !important;
    margin-bottom: 0.65rem;
  }

  .section-subtitle {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
  }

  /* Hero Section */
  .hero-section {
    padding: 90px 0 35px 0 !important;
  }

  .hero-header-glass-card {
    padding: 1.25rem 1rem;
    margin-bottom: 1rem;
    border-radius: 16px;
  }

  .hero-title {
    font-size: 1.85rem !important;
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 1.5rem;
  }

  .stat-glass-card {
    padding: 0.5rem 0.6rem;
  }

  .stat-number {
    font-size: 1.25rem !important;
  }

  .stat-label {
    font-size: 0.68rem !important;
  }

  .highlights-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 14px !important;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .highlight-card {
    flex: 0 0 85% !important;
    min-width: 260px !important;
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
  }

  .highlight-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
  }

  .highlight-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

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

  .pricing-card {
    padding: 1.15rem 1.15rem;
    border-radius: 16px;
  }

  .residence-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 0.65rem;
    padding-bottom: 0.5rem;
  }

  .residence-type {
    font-size: 1.25rem;
    line-height: 1.2;
  }

  .residence-size {
    font-size: 0.8rem;
  }

  .residence-price-box {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 0.75rem;
  }

  .price-label {
    font-size: 0.75rem;
  }

  .price-value {
    font-size: 1.6rem;
  }

  .pricing-features-list {
    gap: 6px;
    margin-bottom: 1rem;
  }

  .pricing-feature-item {
    font-size: 0.8rem;
    padding-bottom: 4px;
  }

  .featured-ribbon {
    font-size: 0.62rem;
    padding: 3px 10px;
    top: -10px;
    right: 14px;
  }

  .tower-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .tower-tab-btn {
    white-space: nowrap;
    padding: 8px 16px;
    font-size: 0.8rem;
    flex-shrink: 0;
  }

  .floorplan-cards-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 14px !important;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .floorplan-cards-grid[style*="display: none"] {
    display: none !important;
  }

  .floorplan-cards-grid::-webkit-scrollbar {
    display: none;
  }

  .floorplan-card {
    flex: 0 0 84% !important;
    min-width: 250px !important;
    padding: 0.85rem !important;
    border-radius: 16px !important;
  }

  .floorplan-img-container {
    height: 180px !important;
    border-radius: 12px !important;
  }

  .floorplan-img-container img {
    height: 100% !important;
    object-fit: contain !important;
  }

  .floorplan-info {
    padding-top: 10px !important;
  }

  .floorplan-title {
    font-size: 0.95rem !important;
  }

  .floorplan-tag {
    font-size: 0.78rem !important;
  }

  .modal-backdrop {
    padding: 8px !important;
  }

  .modal-content-wrapper {
    max-width: 98vw !important;
    max-height: 94vh !important;
    width: 98vw !important;
    padding: 8px !important;
    border-radius: 18px !important;
  }

  .modal-img-display {
    max-width: 100% !important;
    max-height: 85vh !important;
    width: 100% !important;
    object-fit: contain !important;
    border-radius: 12px !important;
  }

  .modal-close-btn {
    top: 8px !important;
    right: 8px !important;
    width: 34px !important;
    height: 34px !important;
    font-size: 0.95rem !important;
  }

  .gallery-slider-wrapper {
    padding: 0;
  }

  .gallery-slider-track {
    gap: 12px;
  }

  .gallery-item {
    flex: 0 0 88%;
    min-width: 250px;
    height: 230px;
    border-radius: 16px;
  }

  .gallery-nav-btn {
    display: none !important;
  }

  .location-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-map-wrapper {
    height: 260px;
    border-radius: 16px;
  }

  .about-glass-box {
    padding: 1.35rem 1.2rem !important;
    border-radius: 18px !important;
  }

  .faq-section {
    padding: 25px 0 !important;
  }

  .faq-accordion-grid {
    gap: 10px !important;
  }

  .faq-card {
    border-radius: 14px !important;
  }

  .faq-question {
    padding: 12px 14px !important;
    font-size: 0.88rem !important;
    line-height: 1.3 !important;
  }

  .faq-icon {
    width: 24px !important;
    height: 24px !important;
    font-size: 0.85rem !important;
  }

  .faq-answer {
    padding: 0 14px !important;
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
  }

  .faq-card.open .faq-answer {
    padding-bottom: 12px !important;
  }

  .toast-notification {
    bottom: 55px !important;
    left: 12px !important;
    right: 12px !important;
    max-width: 94vw !important;
    padding: 10px 14px !important;
    border-radius: 12px !important;
    font-size: 0.8rem !important;
    gap: 8px !important;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .luxury-form-card {
    max-width: 100%;
    padding: 1.2rem 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .floating-action-bar {
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    justify-content: space-around !important;
    padding: 8px 12px !important;
    border-radius: 0 !important;
    border-top: 1px solid var(--glass-border-gold) !important;
    border-left: none !important;
    border-right: none !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
  }

  .floating-btn {
    flex: 1;
    text-align: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.82rem;
    pointer-events: auto !important;
    cursor: pointer !important;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .hero-stats-grid .stat-glass-card:nth-child(5) {
    grid-column: span 2;
  }

  .auto-popup-content {
    width: 94%;
    padding: 1.2rem 1.1rem;
  }
}

.glass-card,
.stat-glass-card,
.highlight-card,
.amenity-card,
.residence-card,
.floor-plan-card,
.gallery-item,
.faq-card,
.tilt-card {
  transform: none !important;
  animation: none !important;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-normal) !important;
}

.glass-card:hover,
.stat-glass-card:hover,
.highlight-card:hover,
.amenity-card:hover,
.residence-card:hover,
.floor-plan-card:hover,
.gallery-item:hover,
.faq-card:hover,
.tilt-card:hover {
  transform: none !important;
}

.glass-card::before,
.stat-glass-card::before,
.highlight-card::before,
.residence-card::before,
.amenity-card::before {
  display: none !important;
}

.residence-card:hover .residence-img img,
.amenity-card:hover .amenity-img img,
.floor-plan-card:hover .plan-img img,
.gallery-item:hover img {
  transform: none !important;
}
