/* ================================================================
   RLD ALTIMA — styles.css
   Theme: Deep Navy (#0B1C3D) + Warm Gold (#C9A227) + White
   Font: Playfair Display (headings) + Inter (body)
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap");

/* ----------------------------------------------------------------
   CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
  --primary: #0b1c3d;
  --primary-light: #162e5e;
  --primary-dark: #060f1f;
  --gold: #c9a227;
  --gold-light: #e2bb45;
  --gold-dark: #a8851b;
  --white: #ffffff;
  --off-white: #f8f5ef;
  --text-dark: #0f1a2e;
  --text-muted: #5a6478;
  --text-light: #ffffff;
  --border: #e4ddd0;
  --border-light: #f0ece5;
  --shadow-sm: 0 2px 8px rgba(11, 28, 61, 0.08);
  --shadow-md: 0 8px 32px rgba(11, 28, 61, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 28, 61, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max-width: 1280px;
}

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

html { scroll-behavior: smooth; }

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

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

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

/* ----------------------------------------------------------------
   HEADER / NAVIGATION
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: var(--max-width);
  z-index: 1000;
}

.header-inner {
  background: rgba(11, 28, 61, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 100px;
  padding: 10px 10px 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(201, 162, 39, 0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 10px 16px;
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.nav-link:hover {
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

.btn-enquire-nav {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-enquire-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ----------------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  background: url("../images/hero-bg.png") no-repeat center center / cover;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 20px 60px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 28, 61, 0.75) 0%,
    rgba(11, 28, 61, 0.4) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: end;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge::before {
  content: "📍";
  font-size: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 8px;
}

.hero-description {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(201, 162, 39, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

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

/* Hero Enquiry Card */
.hero-enquiry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.enquiry-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 20px 24px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.enquiry-card-header h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.3px;
}

.enquiry-card-header p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.enquiry-card-body {
  padding: 20px 24px 24px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fafaf8;
  outline: none;
  transition: var(--transition);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b1c3d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  padding-right: 38px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.form-group.has-error input,
.form-group.has-error select {
  border-color: #e74c3c !important;
}

.form-group.has-error label {
  color: #e74c3c !important;
}

.error-msg {
  display: block;
  color: #e74c3c;
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
}

.phone-row {
  display: flex;
  gap: 8px;
}

.country-code {
  display: flex;
  align-items: center;
  background: #f1f0ec;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}

.phone-row input { flex: 1; }

.btn-submit-card {
  width: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  letter-spacing: 0.3px;
}

.btn-submit-card:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.4);
}

/* ----------------------------------------------------------------
   STATS BAR
   ---------------------------------------------------------------- */
.stats-bar {
  background: var(--primary);
  padding: 40px 20px;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(201, 162, 39, 0.2);
}

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

.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-sublabel {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ----------------------------------------------------------------
   SECTION COMMON
   ---------------------------------------------------------------- */
.section {
  padding: 100px 20px;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

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

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.8;
}

/* ----------------------------------------------------------------
   OVERVIEW SECTION
   ---------------------------------------------------------------- */
.overview-section {
  background: var(--off-white);
}

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

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

.overview-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.overview-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 16px 24px;
}

.overview-image-badge .badge-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.overview-image-badge .badge-text {
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.overview-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.highlight-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.highlight-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.highlight-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

.overview-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.overview-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.overview-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
}

.overview-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   APARTMENT SPECS BAR
   ---------------------------------------------------------------- */
.specs-bar {
  background: var(--primary);
  padding: 0 20px;
}

.specs-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.spec-item {
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}

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

.spec-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.spec-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   FLOOR PLANS
   ---------------------------------------------------------------- */
.floorplan-section { background: var(--white); }

.fp-tabs {
  display: flex;
  gap: 12px;
  margin: 40px 0 32px;
  flex-wrap: wrap;
}

.fp-tab {
  padding: 12px 28px;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.fp-tab.active,
.fp-tab:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.fp-tab.active {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(11, 28, 61, 0.2);
}

.fp-panels { position: relative; }

.fp-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.fp-panel.active { display: grid; }

.fp-image {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 24px;
}

.fp-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: linear-gradient(135deg, #e8e4dc 0%, #d6d0c4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.fp-placeholder-icon {
  font-size: 48px;
  opacity: 0.5;
}

.fp-placeholder-text {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.fp-info h4 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.fp-size {
  font-size: 18px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 24px;
}

.fp-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fp-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.fp-detail-row .key { color: var(--text-muted); }
.fp-detail-row .val { font-weight: 600; color: var(--primary); }

.fp-no-plans {
  text-align: center;
  padding: 60px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   GALLERY
   ---------------------------------------------------------------- */
.gallery-section { background: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: #d6d0c4;
  aspect-ratio: 16/10;
}

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

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,28,61,0.6) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

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

/* Placeholder gallery items */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(135deg, #d6d0c4 0%, #c9c1b3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: rgba(11,28,61,0.3);
}

/* ----------------------------------------------------------------
   LOCATION SECTION
   ---------------------------------------------------------------- */
.location-section { background: var(--white); }

.location-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.location-advantages {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.location-advantages h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
}

.advantage-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.advantage-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

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

.location-category {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border-left: 4px solid var(--gold);
}

.location-category h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.location-category li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-dark);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
}

.location-category li:last-child { border-bottom: none; padding-bottom: 0; }

.location-category .dist {
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
  margin-left: 12px;
}

/* ----------------------------------------------------------------
   AMENITIES
   ---------------------------------------------------------------- */
.amenities-section { background: var(--primary); }

.amenities-section .section-eyebrow { color: var(--gold-light); }
.amenities-section .section-eyebrow::before { background: var(--gold); }
.amenities-section .section-title { color: var(--white); }
.amenities-section .section-title span { color: var(--gold); }

.amenities-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 60px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.amenity-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.amenity-card:hover {
  background: rgba(201, 162, 39, 0.1);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.amenity-icon {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}

.amenity-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

.kids-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 40px;
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--primary-dark);
  padding: 60px 20px 32px;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.footer-brand .brand-name { font-size: 24px; margin-bottom: 8px; }

.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 360px;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.footer-rera {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
}

/* ----------------------------------------------------------------
   TOAST
   ---------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 280px;
  border-left: 4px solid var(--gold);
  animation: slideIn 0.3s ease;
}

.toast.error { border-left-color: #e74c3c; }

@keyframes slideIn {
  from { transform: translateX(100px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
  to { transform: translateX(100px); opacity: 0; }
}

.toast-fadeout { animation: fadeOut 0.4s ease forwards; }

/* ----------------------------------------------------------------
   WHATSAPP FLOAT
   ---------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}

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

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-content-wrap { grid-template-columns: 1fr; }
  .hero-enquiry-card { max-width: 420px; }
  .hero-title { font-size: 52px; }
  .overview-grid { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .site-header { top: 12px; width: calc(100% - 24px); }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .hero-section { padding: 120px 16px 48px; min-height: auto; }
  .hero-title { font-size: 38px; }
  .hero-description { font-size: 14px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,162,39,0.2); }
  .section { padding: 60px 16px; }
  .section-title { font-size: 32px; }
  .specs-inner { grid-template-columns: 1fr; }
  .spec-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .fp-panel.active { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .location-grid { grid-template-columns: 1fr; }
  .location-intro { grid-template-columns: 1fr; gap: 32px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .overview-highlights { grid-template-columns: 1fr 1fr; }
}
