/* ============ RESET & BASE ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  /* Resort Luxury Palette */
  --primary: #0097B2;
  --primary-dark: #006B80;
  --primary-light: #00B4D8;
  --ocean: #0077B6;
  --gold: #D4AF37;
  --gold-light: #E8CC6E;
  --gold-dark: #B8960C;
  --dark: #0B1D26;
  --dark-card: #0F2A36;
  --dark-surface: #133040;
  /* Light backgrounds */
  --bg-light: #F8F9FA;
  --bg-pearl: #EFF3F6;
  --bg-white: #FFFFFF;
  --accent: #D4AF37;
  --accent-cta: #D4AF37;
  --red: #C0392B;
  --red-light: #E74C3C;
  /* Text */
  --text-dark: #1A2A33;
  --text-body: #3D5A6E;
  --text-muted: #7A98AC;
  --text-light: #E8ECF1;
  /* Glass */
  --glass: rgba(0,151,178,0.06);
  --glass-border: rgba(0,151,178,0.15);
  --glass-dark: rgba(255,255,255,0.08);
  --glass-border-dark: rgba(255,255,255,0.12);
  /* Misc */
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-gold: 0 8px 24px rgba(212,175,55,0.35);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); background: var(--bg-light); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-red { color: var(--red); }
.section { padding: 60px 0; }
.section.light-bg { background: var(--bg-white); }
.section.pearl-bg { background: var(--bg-pearl); }
.section.dark-bg { background: linear-gradient(135deg, var(--dark), var(--dark-card)); color: var(--text-light); }

/* ============ STICKY HEADER ============ */
.sticky-header { position: fixed; top: -80px; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,151,178,0.1); transition: top 0.4s ease; height: 64px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.sticky-header.visible { top: 0; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 100%; }
.header-logo { display: flex; align-items: center; gap: 8px; }
.logo-icon { color: var(--primary); font-size: 20px; }
.logo-text strong { font-size: 16px; letter-spacing: 2px; display: block; color: var(--dark); }
.logo-text small { font-size: 10px; color: var(--text-muted); letter-spacing: 1px; }
.header-nav { display: none; gap: 24px; }
.header-nav a { font-size: 13px; font-weight: 500; color: var(--text-body); transition: color 0.3s; letter-spacing: 0.5px; }
.header-nav a:hover { color: var(--primary); }
.header-hotline { display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; padding: 8px 18px; border-radius: 50px; font-weight: 700; font-size: 14px; animation: hotlinePulse 2s infinite; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
@keyframes hotlinePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); } 50% { box-shadow: 0 0 0 10px rgba(212,175,55,0); } }

/* ============ ICONS ============ */
.ph-light, i[class^="ph-"] { color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 1.25em; line-height: 1; vertical-align: middle; flex-shrink: 0; }
.hero-storytelling { font-size: 15px; color: rgba(255, 255, 255, 0.95); line-height: 1.8; margin: 4px 0 16px 0; border-left: 3px solid var(--gold); padding-left: 16px; font-weight: 300; letter-spacing: 0.3px; }

/* ============ HERO SECTION ============ */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,29,38,0.88) 0%, rgba(0,119,182,0.45) 50%, rgba(11,29,38,0.80) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 100px 16px 40px; display: flex; flex-direction: column; gap: 32px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(212,175,55,0.15); border: 1px solid rgba(212,175,55,0.5); color: var(--gold-light); padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 700; letter-spacing: 1px; width: fit-content; }
.badge-pulse { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } 100% { opacity: 1; transform: scale(1); } }
.hero-title { font-family: var(--font-display); font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; color: #fff; }
.title-sub { display: block; font-size: clamp(0.85rem, 2vw, 1.1rem); font-family: var(--font-body); font-weight: 400; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.title-location { display: block; color: var(--gold-light); font-style: italic; }
.hero-highlights { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.highlight-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.9); }
.highlight-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.hero-subtext { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-top: 8px; }
.hero-subtext strong { color: var(--gold-light); }
.hero-cta-mobile { display: block; width: 100%; padding: 16px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; font-size: 16px; font-weight: 800; border-radius: var(--radius); text-align: center; letter-spacing: 0.5px; animation: ctaGold 2s infinite; margin-top: 8px; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }
@keyframes ctaGold { 0%,100% { transform: scale(1); box-shadow: 0 4px 24px rgba(212,175,55,0.3); } 50% { transform: scale(1.02); box-shadow: 0 6px 32px rgba(212,175,55,0.55); } }
.hero-form-desktop { display: none; }

/* Hero Stats */
.hero-stats { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 16px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 24px; }
.stat-item { text-align: center; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius); padding: 16px 8px; }
.stat-number { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--gold-light); }
.stat-unit { font-size: 14px; color: var(--gold-light); font-weight: 600; }
.stat-label { display: block; font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { display: none; }

/* ============ URGENCY BANNER ============ */
.urgency-banner { background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); padding: 14px 0; position: relative; overflow: hidden; }
.urgency-inner { max-width: 1200px; margin: 0 auto; padding: 0 16px; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.urgency-icon { font-size: 24px; animation: bounce 1s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.urgency-text { font-size: 13px; font-weight: 700; color: var(--dark); }
.urgency-btn { background: var(--dark); color: var(--gold-light); padding: 8px 20px; border-radius: 50px; font-weight: 800; font-size: 13px; white-space: nowrap; transition: transform 0.2s; }
.urgency-btn:hover { transform: scale(1.05); }

/* ============ SECTION HEADERS ============ */
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag { display: inline-block; background: linear-gradient(135deg, rgba(0,151,178,0.1), rgba(0,151,178,0.03)); border: 1px solid rgba(0,151,178,0.25); color: var(--primary); padding: 4px 16px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 2px; margin-bottom: 16px; }
.section-header.on-dark .section-tag { background: rgba(212,175,55,0.1); border-color: rgba(212,175,55,0.3); color: var(--gold-light); }
.section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.5rem); font-weight: 700; line-height: 1.3; color: var(--text-dark); }
.section-header.on-dark .section-title { color: #fff; }
.section-desc { font-size: 15px; color: var(--text-muted); margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header.on-dark .section-desc { color: rgba(255,255,255,0.7); }

/* ============ OVERVIEW ============ */
.overview-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.overview-card { background: var(--bg-white); border: 1px solid rgba(0,151,178,0.1); border-radius: var(--radius); padding: 20px 16px; text-align: center; transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.overview-card:hover { transform: translateY(-4px); border-color: var(--primary); box-shadow: 0 8px 24px rgba(0,151,178,0.12); }
.card-icon { font-size: 28px; margin-bottom: 8px; }
.overview-card h4 { font-size: 13px; color: var(--primary); margin-bottom: 6px; letter-spacing: 0.5px; font-weight: 700; }
.overview-card p { font-size: 13px; color: var(--text-body); line-height: 1.5; }
.overview-cta, .section-cta { text-align: center; margin-top: 32px; }

/* ============ BUTTONS ============ */
.btn-micro { background: var(--bg-white); border: 2px solid var(--primary); color: var(--primary); padding: 14px 28px; border-radius: var(--radius); font-weight: 700; font-size: 14px; transition: all 0.3s; }
.btn-micro:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,151,178,0.25); }
.btn-micro.on-dark { border-color: var(--gold); color: var(--gold-light); background: transparent; }
.btn-micro.on-dark:hover { background: var(--gold); color: var(--dark); }
.btn-cta-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; padding: 14px 32px; border-radius: var(--radius); font-weight: 800; font-size: 15px; transition: transform 0.3s, box-shadow 0.3s; white-space: nowrap; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.btn-cta-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* ============ LOCATION ============ */
.location-section { background: var(--bg-white); }
.location-grid { display: flex; flex-direction: column; gap: 24px; }
.location-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow); }
.location-img { width: 100%; height: 100%; object-fit: cover; }
.location-map-overlay { position: absolute; bottom: 16px; left: 16px; }
.location-details { display: flex; flex-direction: column; gap: 10px; }
.location-item { display: flex; align-items: center; gap: 12px; background: var(--bg-light); border: 1px solid rgba(0,151,178,0.08); border-radius: var(--radius); padding: 14px 16px; transition: border-color 0.3s, box-shadow 0.3s; }
.location-item.featured { border-color: var(--primary); background: linear-gradient(135deg, rgba(0,151,178,0.06), transparent); box-shadow: 0 4px 16px rgba(0,151,178,0.1); }
.loc-time { background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 800; white-space: nowrap; min-width: 70px; text-align: center; }
.loc-desc { font-size: 13px; line-height: 1.4; color: var(--text-body); }

/* ============ AMENITIES ============ */
.amenities-section { background: linear-gradient(135deg, var(--dark), var(--dark-card)); }
.amenity-card { background: var(--dark-surface); border: 1px solid var(--glass-border-dark); border-radius: var(--radius-lg); overflow: hidden; height: 100%; }
.amenity-img-wrap { aspect-ratio: 16/10; overflow: hidden; }
.amenity-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.amenity-card:hover .amenity-img-wrap img { transform: scale(1.05); }
.amenity-card h4 { padding: 16px 16px 4px; font-size: 15px; color: var(--gold-light); }
.amenity-card p { padding: 0 16px 16px; font-size: 13px; color: rgba(255,255,255,0.6); }
.swiper { padding-bottom: 40px !important; }
.swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--gold); opacity: 1; }

/* ============ MID CTA ============ */
.mid-cta-section { padding: 40px 0; background: var(--bg-pearl); }
.mid-cta-box { background: var(--bg-white); border: 2px solid var(--primary); border-radius: var(--radius-lg); padding: 28px 20px; display: flex; flex-direction: column; gap: 20px; align-items: center; text-align: center; box-shadow: 0 8px 32px rgba(0,151,178,0.1); }
.mid-cta-left h3 { font-size: 18px; margin-bottom: 8px; color: var(--text-dark); }
.mid-cta-left p { font-size: 13px; color: var(--text-muted); }

/* ============ PRODUCTS ============ */
.product-tabs { display: flex; gap: 8px; margin-bottom: 24px; overflow-x: auto; padding-bottom: 4px; }
.tab-btn { background: var(--bg-white); border: 1px solid rgba(0,151,178,0.15); color: var(--text-body); padding: 10px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; white-space: nowrap; transition: all 0.3s; }
.tab-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.towers-info { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; justify-content: center; }
.tower-badge { background: rgba(0,151,178,0.06); border: 1px solid rgba(0,151,178,0.15); padding: 10px 16px; border-radius: var(--radius); text-align: center; }
.tower-badge strong { display: block; font-size: 16px; color: var(--primary); letter-spacing: 2px; }
.tower-badge span { font-size: 12px; color: var(--text-muted); }
.product-card { background: var(--bg-white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); overflow: hidden; height: 100%; position: relative; transition: transform 0.3s, box-shadow 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.product-tag { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--red); color: #fff; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; }
.product-tag.popular { background: var(--primary); }
.product-tag.premium { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.product-tag.hot { background: var(--gold); color: var(--dark); }
.product-img { aspect-ratio: 16/10; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 16px; }
.product-info h4 { font-size: 16px; margin-bottom: 10px; color: var(--text-dark); }
.product-specs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.product-specs span { font-size: 12px; color: var(--text-body); background: var(--bg-pearl); padding: 4px 10px; border-radius: 50px; }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price-label { font-size: 12px; color: var(--text-muted); }
.price-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--primary-dark); }
.product-btn { width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; padding: 12px; border-radius: var(--radius); font-weight: 800; font-size: 13px; transition: transform 0.2s, box-shadow 0.2s; letter-spacing: 0.5px; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.product-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.low-rise-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.low-rise-card { background: var(--bg-white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.low-rise-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.low-rise-info { padding: 16px; }
.low-rise-info h4 { font-size: 16px; margin-bottom: 6px; color: var(--primary-dark); }
.low-rise-info p { font-size: 13px; color: var(--text-body); margin-bottom: 14px; }

/* ============ LIFESTYLE SECTION ============ */
.lifestyle-section { position: relative; overflow: hidden; padding: 0; }
.lifestyle-bg { position: absolute; inset: 0; }
.lifestyle-bg img { width: 100%; height: 100%; object-fit: cover; }
.lifestyle-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(11,29,38,0.85), rgba(0,119,182,0.45)); }
.lifestyle-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; padding: 80px 20px; text-align: center; }
.lifestyle-heading { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 24px; line-height: 1.3; }
.lifestyle-heading span { color: var(--gold-light); }
.lifestyle-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 20px; line-height: 1.3; }
.lifestyle-content h2 span { color: var(--gold-light); }
.lifestyle-quote { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.8; font-style: italic; margin-bottom: 32px; border-left: 3px solid var(--gold); padding-left: 20px; text-align: left; max-width: 520px; margin-left: auto; margin-right: auto; }
.lifestyle-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px; }
.lifestyle-feat { background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); padding: 16px; text-align: center; }
.lifestyle-feat-icon { font-size: 28px; margin-bottom: 6px; }
.lifestyle-feat-text { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; }

/* ============ INVESTMENT SECTION ============ */
.investment-section { background: var(--bg-white); }
.investment-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.invest-card { background: var(--bg-light); border: 1px solid rgba(0,151,178,0.1); border-radius: var(--radius-lg); padding: 32px 20px; text-align: center; transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden; }
.invest-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--gold)); }
.invest-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,151,178,0.12); }
.invest-icon { font-size: 40px; margin-bottom: 12px; }
.invest-card h4 { font-size: 18px; color: var(--primary-dark); margin-bottom: 8px; }
.invest-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--gold-dark); margin-bottom: 8px; }
.invest-card p { font-size: 14px; color: var(--text-body); line-height: 1.6; }

/* ============ SCARCITY / LIMITED SECTION ============ */
.scarcity-section { background: linear-gradient(135deg, var(--dark), #0D2E3F); overflow: hidden; position: relative; }
.scarcity-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(212,175,55,0.08), transparent 70%); border-radius: 50%; }
.scarcity-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.scarcity-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.scarcity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.scarcity-card:hover img { transform: scale(1.05); }
.scarcity-badge { position: absolute; top: 16px; right: 16px; background: var(--red); color: #fff; padding: 6px 16px; border-radius: 50px; font-size: 12px; font-weight: 800; letter-spacing: 0.5px; animation: pulse 1.5s infinite; }
.scarcity-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 20px 16px 16px; }
.scarcity-card-overlay h4 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.scarcity-card-overlay p { color: rgba(255,255,255,0.7); font-size: 12px; }
.scarcity-cta { text-align: center; margin-top: 32px; }
.scarcity-counter { display: flex; justify-content: center; gap: 24px; margin-bottom: 32px; }
.scarcity-count-item { text-align: center; }
.scarcity-count-num { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: var(--gold-light); display: block; }
.scarcity-count-label { font-size: 12px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ============ PRICING ============ */
.pricing-section { background: var(--bg-pearl); }
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.pricing-card { background: var(--bg-white); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-lg); padding: 24px 20px; position: relative; overflow: hidden; transition: transform 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pricing-card.highlight-card { border-color: var(--gold); background: linear-gradient(135deg, rgba(212,175,55,0.04), var(--bg-white)); }
.pricing-ribbon { position: absolute; top: 16px; right: -28px; background: var(--red); color: #fff; padding: 4px 40px; font-size: 11px; font-weight: 800; letter-spacing: 1px; transform: rotate(45deg); }
.pricing-card h4 { font-size: 16px; margin-bottom: 10px; color: var(--text-dark); }
.pricing-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--primary-dark); margin-bottom: 16px; }
.pricing-card ul { list-style: none; margin-bottom: 20px; }
.pricing-card li { padding: 6px 0; font-size: 14px; border-bottom: 1px solid var(--bg-pearl); color: var(--text-body); }
.pricing-card li:last-child { border: none; }
.pricing-urgency { margin-top: 32px; }
.urgency-box { background: linear-gradient(135deg, rgba(192,57,43,0.08), rgba(192,57,43,0.02)); border: 2px solid var(--red); border-radius: var(--radius); padding: 20px; display: flex; align-items: center; gap: 16px; font-size: 14px; line-height: 1.6; color: var(--text-dark); }
.urgency-flash { font-size: 32px; animation: bounce 1s infinite; flex-shrink: 0; }

/* ============ TRUST ============ */
.trust-section { background: var(--bg-white); }
.trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.trust-item { text-align: center; padding: 24px 16px; background: var(--bg-light); border: 1px solid rgba(0,151,178,0.08); border-radius: var(--radius); transition: transform 0.3s; }
.trust-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.trust-icon { font-size: 36px; margin-bottom: 8px; }
.trust-item h4 { font-size: 15px; color: var(--primary-dark); margin-bottom: 6px; }
.trust-item p { font-size: 12px; color: var(--text-muted); }

/* ============ FINAL CTA ============ */
.final-cta-section { position: relative; overflow: hidden; padding: 80px 0; }
.final-cta-bg { position: absolute; inset: 0; }
.final-cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.final-cta-content { text-align: center; max-width: 560px; margin: 0 auto; }
.final-cta-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 12px; color: #fff; }
.final-cta-content > p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 28px; }
.final-form { display: flex; flex-direction: column; gap: 12px; }
.final-form input { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: #fff; padding: 14px 18px; border-radius: var(--radius); font-size: 15px; transition: border-color 0.3s; }
.final-form input::placeholder { color: rgba(255,255,255,0.6); }
.final-form input:focus { outline: none; border-color: var(--gold); }
.final-form button { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; padding: 16px; border-radius: var(--radius); font-size: 16px; font-weight: 800; animation: ctaGold 2s infinite; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.final-trust { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 12px; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.08); padding: 48px 0 100px; color: rgba(255,255,255,0.7); }
.footer-inner { display: flex; flex-direction: column; gap: 32px; }
.footer-main { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; font-size: 18px; letter-spacing: 2px; color: #fff; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 4px; line-height: 1.6; }
.footer-phone { display: inline-block; color: var(--gold-light); font-size: 20px; font-weight: 700; margin-top: 10px; }
.footer-company { padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-company h5 { font-size: 14px; color: var(--gold-light); margin-bottom: 8px; letter-spacing: 0.5px; }
.footer-company p { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 4px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color 0.3s; text-decoration: underline; }
.footer-links a:hover { color: var(--gold-light); }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.7; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-disclaimer p { margin-bottom: 6px; }

/* ============ MOBILE STICKY BAR ============ */
.mobile-sticky-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; display: flex; background: rgba(11,29,38,0.97); backdrop-filter: blur(20px); border-top: 1px solid rgba(212,175,55,0.2); padding: 8px 12px; gap: 8px; padding-bottom: calc(8px + env(safe-area-inset-bottom)); }
.sticky-btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px; border-radius: 10px; font-size: 11px; font-weight: 700; transition: transform 0.2s; }
.sticky-call { background: linear-gradient(135deg, #16A34A, #15803D); color: #fff; }
.sticky-zalo { background: linear-gradient(135deg, #0068FF, #0052CC); color: #fff; }
.sticky-register { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; }
.sticky-btn span:first-child { font-size: 20px; }
@keyframes shake { 0%,100% { transform: rotate(0); } 25% { transform: rotate(-15deg); } 75% { transform: rotate(15deg); } }
.shake { animation: shake 0.8s ease-in-out infinite; }

/* ============ POPUP ============ */
.popup-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); display: none; justify-content: center; align-items: center; padding: 16px; }
.popup-overlay.active { display: flex; }
.popup-box { background: var(--bg-white); border: 2px solid var(--gold); border-radius: var(--radius-lg); max-width: 420px; width: 100%; position: relative; animation: popupIn 0.3s ease; overflow: hidden; }
@keyframes popupIn { from { opacity: 0; transform: translateY(20px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); } }
.popup-close { position: absolute; top: 12px; right: 12px; background: var(--bg-pearl); border: 1px solid rgba(0,0,0,0.08); color: var(--text-body); width: 32px; height: 32px; border-radius: 50%; font-size: 16px; display: flex; align-items: center; justify-content: center; z-index: 2; }
.popup-content { padding: 28px 24px; }
.popup-urgency { background: linear-gradient(135deg, rgba(192,57,43,0.08), rgba(192,57,43,0.02)); border: 1px solid rgba(192,57,43,0.2); border-radius: var(--radius); padding: 10px; text-align: center; font-size: 13px; margin-bottom: 20px; color: var(--red); font-weight: 600; }
.popup-title { font-family: var(--font-display); font-size: 22px; text-align: center; margin-bottom: 8px; color: var(--text-dark); }
.popup-desc { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.popup-content .form-group { margin-bottom: 12px; }
.popup-content input { width: 100%; background: var(--bg-light); border: 1px solid rgba(0,0,0,0.1); color: var(--text-dark); padding: 14px 16px; border-radius: var(--radius); font-size: 15px; }
.popup-content input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,151,178,0.12); }
.popup-submit { width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; padding: 16px; border-radius: var(--radius); font-size: 16px; font-weight: 800; margin-top: 4px; animation: ctaGold 2s infinite; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.popup-trust { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 14px; }

/* ============ THANK YOU ============ */
.thankyou-overlay { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.7); display: none; justify-content: center; align-items: center; padding: 16px; }
.thankyou-overlay.active { display: flex; }
.thankyou-box { background: var(--bg-white); border: 2px solid #16A34A; border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; max-width: 400px; animation: popupIn 0.3s ease; }
.thankyou-icon { font-size: 48px; margin-bottom: 12px; }
.thankyou-box h3 { font-size: 22px; color: #16A34A; margin-bottom: 12px; }
.thankyou-box p { font-size: 14px; color: var(--text-body); margin-bottom: 8px; }
.thankyou-phone { display: inline-block; color: var(--primary-dark); font-size: 22px; font-weight: 700; margin: 12px 0; }
.thankyou-close { background: var(--bg-pearl); border: 1px solid rgba(0,0,0,0.08); color: var(--text-body); padding: 10px 32px; border-radius: var(--radius); font-size: 14px; margin-top: 8px; }

/* ============ FLOAT NOTIFICATION ============ */
.float-notification { position: fixed; bottom: 80px; left: 16px; z-index: 900; background: var(--bg-white); border: 1px solid rgba(0,151,178,0.15); border-radius: var(--radius); padding: 12px 16px; display: flex; align-items: center; gap: 10px; max-width: 320px; transform: translateX(-120%); transition: transform 0.5s ease; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.float-notification.show { transform: translateX(0); }
.notify-avatar { font-size: 28px; }
.notify-text { font-size: 12px; color: var(--text-muted); }
.notify-text strong { display: block; color: var(--text-dark); font-size: 13px; }

/* Hero Form Desktop */
.hero-form-desktop { position: relative; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); border: 2px solid var(--gold); border-radius: var(--radius-lg); padding: 28px 24px; min-width: 380px; max-width: 420px; }
.form-glow { position: absolute; inset: -2px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--gold), transparent, var(--gold)); opacity: 0.2; z-index: -1; filter: blur(20px); }
.form-urgency-badge { background: linear-gradient(135deg, rgba(192,57,43,0.1), rgba(192,57,43,0.03)); border: 1px solid rgba(192,57,43,0.25); padding: 8px 12px; border-radius: var(--radius); text-align: center; font-size: 13px; margin-bottom: 16px; color: var(--red); font-weight: 600; animation: bounce 2s infinite; }
.form-title { font-family: var(--font-display); font-size: 20px; text-align: center; margin-bottom: 8px; line-height: 1.3; color: var(--text-dark); }
.form-subtitle { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.hero-form-desktop .form-group { margin-bottom: 12px; }
.hero-form-desktop input { width: 100%; background: var(--bg-light); border: 1px solid rgba(0,0,0,0.1); color: var(--text-dark); padding: 14px 16px; border-radius: var(--radius); font-size: 15px; }
.hero-form-desktop input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,151,178,0.12); }
.form-submit-btn { width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; padding: 16px; border-radius: var(--radius); font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 8px; animation: ctaGold 2s infinite; margin-top: 4px; text-shadow: 0 1px 2px rgba(0,0,0,0.15); }
.form-trust { text-align: center; font-size: 11px; color: var(--text-muted); margin-top: 12px; }

/* ============ DESKTOP (768px+) ============ */
@media (min-width: 768px) {
  .container { padding: 0 32px; }
  .section { padding: 80px 0; }
  .header-nav { display: flex; }
  .hero-cta-mobile { display: none; }
  .hero-form-desktop { display: block; }
  .hero-content { flex-direction: row; align-items: center; justify-content: space-between; padding: 120px 32px 60px; gap: 48px; }
  .hero-left { flex: 1; max-width: 580px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 0 32px; }
  .stat-item { padding: 24px; }
  .stat-number { font-size: 36px; }
  .urgency-inner { flex-direction: row; }
  .overview-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .location-grid { flex-direction: row; align-items: stretch; }
  .location-map { flex: 1; min-height: 360px; }
  .location-details { flex: 1; }
  .mid-cta-box { flex-direction: row; text-align: left; padding: 32px 40px; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .final-form { flex-direction: row; }
  .final-form input { flex: 1; }
  .final-form button { white-space: nowrap; padding: 16px 32px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer { padding-bottom: 48px; }
  .mobile-sticky-bar { display: none; }
  .float-notification { bottom: 32px; }
  .low-rise-grid { grid-template-columns: repeat(3, 1fr); }
  .products-swiper .swiper-slide { width: 300px; }
  .investment-grid { grid-template-columns: repeat(3, 1fr); }
  .scarcity-grid { grid-template-columns: repeat(2, 1fr); }
  .lifestyle-features { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
  .hero-content { padding: 140px 32px 60px; }
  .highlight-item { font-size: 15px; }
  .overview-card { padding: 28px 20px; }
}
