/* ==========================================
   RG PLEIADDES - ULTRA PREMIUM LUXURY STYLING
   ========================================== */

/* --- Fonts & Core Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --navy-deep: #071526;
  --navy-dark: #0D2340;
  --navy-mid: #153054;
  --gold-accent: #D4AF37;
  --gold-light: #F4D068;
  --gold-dark: #AA7C11;
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #AA7C11 100%);
  --white: #FFFFFF;
  --white-soft: #F8F9FA;
  --text-dark: #2D3E50;
  --text-light: #E0E6ED;
  --text-muted: #A0B2C6;
  
  /* Glassmorphism & Borders */
  --glass-bg: rgba(13, 35, 64, 0.7);
  --glass-border: rgba(212, 175, 55, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  
  /* Fonts */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Manrope', sans-serif;
  
  /* Layout & Animation Spacing */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* --- Resets --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-deep);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

.nav-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.footer-logo img {
    height: 90px;
    width: auto;
    display: block;
}

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

/* --- Reusable Components & Helpers --- */
.container {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

/* Section Header styling */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header span {
  font-family: var(--font-headings);
  color: var(--gold-accent);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.text-gold {
  color: var(--gold-accent) !important;
}

.bg-dark {
  background-color: var(--navy-deep);
}

.bg-light-navy {
  background-color: var(--navy-dark);
}

/* Glassmorphism utility card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  gap: 10px;
}

.btn-primary {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  color: var(--navy-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold-accent);
  color: var(--gold-accent);
  transform: translateY(-3px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid var(--glass-border);
}

.btn-glass:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* --- Sticky Transparent Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(7, 21, 38, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo span {
  color: var(--gold-accent);
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
}

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

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

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --- Hero Section & Particle Overlay --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 120px;
  overflow: hidden;
  background: radial-gradient(circle at center, var(--navy-dark) 0%, var(--navy-deep) 100%);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(7, 21, 38, 0.7), rgba(7, 21, 38, 0.9)), url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--gold-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: transparent;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 35px;
  font-weight: 400;
  max-width: 600px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 20px;
  border-radius: 12px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.hero-badge i {
  color: var(--gold-accent);
}

.hero-badge:hover {
  background: rgba(212, 175, 55, 0.05);
  border-color: rgba(212, 175, 55, 0.3);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Floating Enquiry Form */
.enquiry-form-card {
  padding: 40px;
  max-width: 420px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(13, 35, 64, 0.85);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.enquiry-form-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.enquiry-form-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  background: rgba(7, 21, 38, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px 15px 15px 50px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-accent);
  background: rgba(7, 21, 38, 0.8);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.enquiry-form-card .btn-submit {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
}

/* --- Project Overview --- */
.overview-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.overview-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.overview-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.overview-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.4);
  pointer-events: none;
}

.overview-info h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.overview-info p {
  color: var(--text-muted);
  margin-bottom: 35px;
  font-size: 1.05rem;
  line-height: 1.8;
}

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

.highlight-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition-smooth);
}

.highlight-card:hover {
  background: rgba(212, 175, 55, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.highlight-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-accent);
  font-family: var(--font-headings);
}

.highlight-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-light);
  font-weight: 500;
}

/* --- Why Choose RG Pleiaddes --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  padding: 40px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition-smooth);
  height: 100%;
}

.why-icon-box {
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: var(--gold-accent);
  transition: var(--transition-smooth);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.why-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
}

.why-card:hover .why-icon-box {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  transform: rotateY(180deg);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

/* --- Price List --- */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-premium);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.price-table th {
  background: rgba(7, 21, 38, 0.8);
  color: var(--gold-accent);
  font-family: var(--font-headings);
  font-weight: 600;
  padding: 24px 30px;
  font-size: 1rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.price-table td {
  padding: 24px 30px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-weight: 500;
}

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

.price-table tr {
  transition: var(--transition-smooth);
}

.price-table tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.price-table .btn-table {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* --- Floor Plans --- */
.floorplan-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.tab-btn {
  padding: 12px 35px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  font-family: var(--font-headings);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tab-btn:hover {
  border-color: var(--gold-accent);
  color: var(--gold-accent);
}

.tab-btn.active {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.floorplan-content {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.floorplan-content.active {
  display: grid;
  animation: fadeIn 0.6s ease;
}

.floorplan-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.floorplan-details h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.floorplan-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 30px;
  margin-bottom: 25px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.spec-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.spec-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.floorplan-image-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-premium);
  cursor: zoom-in;
  background: #FFF;
}

.floorplan-image-box img {
  width: 100%;
  height: 400px;
  object-fit: contain;
  padding: 20px;
  transition: var(--transition-smooth);
}

.floorplan-image-box:hover img {
  transform: scale(1.05);
}

.floorplan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 21, 38, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.floorplan-image-box:hover .floorplan-overlay {
  opacity: 1;
}

.floorplan-overlay i {
  color: var(--white);
  font-size: 2rem;
  background: var(--gold-gradient);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.amenity-card {
  padding: 30px 20px;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: var(--transition-smooth);
}

.amenity-card i {
  font-size: 2.2rem;
  color: var(--gold-accent);
  transition: var(--transition-smooth);
}

.amenity-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
}

.amenity-card:hover {
  transform: translateY(-8px);
  background: var(--glass-bg);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: var(--glass-shadow);
}

.amenity-card:hover i {
  transform: scale(1.15);
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* --- Gallery Section --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  cursor: pointer;
  height: 280px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(7, 21, 38, 0.95));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition-smooth);
}

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

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

.gallery-item-overlay h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.gallery-item-overlay p {
  color: var(--gold-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* --- Location Advantages --- */
.location-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--glass-border);
  height: 480px;
}

.map-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-info h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.advantages-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.advantage-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition-smooth);
}

.advantage-item:hover {
  background: rgba(212, 175, 55, 0.04);
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateX(5px);
}

.advantage-icon {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-accent);
  flex-shrink: 0;
}

.advantage-details {
  flex-grow: 1;
}

.advantage-details h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

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

.advantage-time {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--gold-accent);
  font-size: 1.05rem;
  white-space: nowrap;
}

/* --- Developer Section --- */
.developer-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.developer-brand {
  text-align: center;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.developer-brand-logo {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-family: var(--font-headings);
}

.developer-brand-logo span {
  color: var(--gold-accent);
}

.developer-brand-tag {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.developer-info h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.developer-info p {
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.8;
  font-size: 1.02rem;
}

.developer-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  border-color: rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.02);
}

.stat-card h4 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-accent);
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0;
  font-weight: 500;
}

/* --- FAQ Section --- */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(212, 175, 55, 0.25);
  background: var(--glass-bg);
}

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

.faq-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition-smooth);
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  transform: rotate(45deg);
}

.faq-item.active .faq-header h3 {
  color: var(--gold-accent);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-content {
  padding: 0 30px 24px 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* --- Final CTA Banner --- */
.final-cta {
  position: relative;
  background-image: linear-gradient(rgba(7, 21, 38, 0.8), rgba(7, 21, 38, 0.95)), url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  padding: 120px 0;
  overflow: hidden;
}

.final-cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.final-cta p {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* --- Footer --- */
.footer {
  background-color: #040A12;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold-accent);
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-about .nav-logo {
  margin-bottom: 20px;
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-accent);
  padding-left: 5px;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-contact-list li {
  display: flex;
  gap: 10px;
}

.footer-contact-list i {
  color: var(--gold-accent);
  margin-top: 4px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--gold-gradient);
  color: var(--navy-deep);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-disclaimer {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: justify;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

/* --- Floating Action Buttons --- */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.float-whatsapp {
  background-color: #25D366;
}

.float-whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.float-call {
  background-color: var(--gold-accent);
  color: var(--navy-deep);
}

.float-call:hover {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--navy-dark);
  border-top: 1px solid var(--glass-border);
  padding: 12px 20px;
  z-index: 998;
  box-shadow: 0 -5px 25px rgba(0,0,0,0.3);
}

.sticky-mobile-cta .btn-book {
  width: 100%;
  border-radius: 12px;
  padding: 12px;
}

/* --- Lightbox Modal --- */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(4, 10, 18, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  padding: 10px;
}

.gallery-lightbox .lightbox-image {
  background: transparent;
  padding: 0;
  border: none;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  color: var(--gold-accent);
}

.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: var(--font-headings);
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}

/* --- Scroll Animation Classes (IntersectionObserver) --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive Media Queries --- */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .navbar {
    padding: 15px 0;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(7, 21, 38, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
  }
  .nav-menu.active {
    right: 0;
  }
  .navbar.scrolled .nav-menu {
    background: rgba(7, 21, 38, 0.98);
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-tag {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .enquiry-form-card {
    margin: 0 auto;
  }
  
  .overview-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .overview-media img {
    height: 400px;
  }
  
  .floorplan-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .floorplan-image-box {
    order: -1;
  }
  
  .location-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .map-card {
    height: 380px;
  }
  
  .developer-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .developer-brand {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
  }
  .developer-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 70px 0;
  }
  .section-header h2 {
    font-size: 2rem;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-sub {
    font-size: 1.1rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .floorplan-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .tab-btn {
    width: 100%;
    max-width: 250px;
  }
  
  .floating-actions {
    bottom: 80px;
    right: 20px;
  }
  .sticky-mobile-cta {
    display: block;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  
  .highlight-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .enquiry-form-card {
    padding: 25px 20px;
  }
}
