/* ═══════════════════════════════════════════════════════════════════════════════
   HUB PAGES STYLESHEET — Plots, Villas, Flats · Galaxy Infra Developers
   Luxury Editorial Typography · Cohesive Color Palette · Kinetic Animations
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Typography / Font-Face */
@font-face {
  font-family: 'Gued';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/Gued-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Gued';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../assets/fonts/Gued-Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'Blue Voltage';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/Blue-Voltage.otf') format('opentype');
}

@font-face {
  font-family: 'Mustinya';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/Mustinya.ttf') format('truetype');
  unicode-range: U+0020-002B, U+002D-007E;
}

@font-face {
  font-family: 'Abho Luxury Demo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/AbhoLuxuryDemo.otf') format('opentype'),
       url('../assets/fonts/AbhoLuxuryDemo-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Abho Luxury';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/AbhoLuxuryDemo.otf') format('opentype'),
       url('../assets/fonts/AbhoLuxuryDemo-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Djore DEMO';
  font-style: normal;
  font-weight: 300 400 700;
  font-display: swap;
  src: url('../assets/fonts/DjoreDEMO.otf') format('opentype'),
       url('../assets/fonts/Djore DEMO.otf') format('opentype');
}

@font-face {
  font-family: 'San Brainy';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/SanBrainy.otf') format('opentype');
}

@font-face {
  font-family: 'Qunotz';
  font-style: normal;
  font-weight: 300 400 700;
  font-display: swap;
  src: url('../assets/fonts/Qunotz-Regular.otf') format('opentype');
}

/* ── Typography & Token System ── */
:root {
  --hub-font-serif: 'Mustinya', 'Abho Luxury Demo', 'Djore DEMO', 'San Brainy', 'Qunotz', 'Sogo', Georgia, 'Times New Roman', serif;
  --hub-font-heading: 'Mustinya', 'Abho Luxury Demo', 'Djore DEMO', 'San Brainy', 'Qunotz', 'Sogo', serif;
  --hub-font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Colors */
  --hub-bg-warm: #FCFAF5;
  --hub-bg-light: #F8F5F0;
  --hub-bg-cream: #F3EFE6;
  --hub-bg-card: #FFFFFF;
  --hub-bg-dark: #0E1622;
  --hub-bg-dark-surface: #141E2D;

  --hub-gold: #BCA893;
  --hub-gold-light: #D4C0A8;
  --hub-gold-deep: #8C735B;
  --hub-gold-bronze: #7A624A;
  --hub-dusk-blue: #506579;

  /* Text Colors — Light Mode */
  --hub-text-dark-h1: #0E1622;
  --hub-text-dark-h2: #0E1622;
  --hub-text-dark-body: #2B3542;
  --hub-text-dark-sub: #415060;
  --hub-text-dark-muted: #64748B;
  --hub-text-dark-overline: #8C735B;

  /* Text Colors — Dark Mode */
  --hub-text-light-h1: #FCFAF5;
  --hub-text-light-h2: #FCFAF5;
  --hub-text-light-body: rgba(252, 250, 245, 0.88);
  --hub-text-light-sub: rgba(252, 250, 245, 0.78);
  --hub-text-light-muted: rgba(252, 250, 245, 0.58);
  --hub-text-light-overline: #BCA893;

  /* Borders & Accents */
  --hub-border-subtle: rgba(14, 22, 34, 0.08);
  --hub-border-gold: rgba(188, 168, 147, 0.35);
  --hub-border-gold-hover: rgba(188, 168, 147, 0.65);
  --hub-border-dark: rgba(252, 250, 245, 0.12);

  /* Shadows */
  --hub-shadow-card: 0 4px 20px rgba(14, 22, 34, 0.03);
  --hub-shadow-hover: 0 20px 48px rgba(14, 22, 34, 0.09), 0 0 0 1px rgba(188, 168, 147, 0.45);
}

/* Base */
h1, h2, h3, .hubHeroTitle, .sectionHeading, .hubProjectTitle, .hubCtaTitle {
  font-family: var(--hub-font-serif) !important;
}

.hubPageBody {
  background: var(--hub-bg-warm);
  color: var(--hub-text-dark-body);
  font-family: var(--hub-font-sans);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 22, 34, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(188, 168, 147, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}
.hubHeaderInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1.5rem;
}
.hubBackBtn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(252, 250, 245, 0.75);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hubBackBtn:hover {
  color: #FCFAF5;
  transform: translateX(-3px);
}
.hubBrand {
  color: #FCFAF5;
  text-decoration: none;
  font-family: 'Mustinya', 'Djore DEMO', 'San Brainy', serif;
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: opacity 0.3s;
}
.hubBrand:hover {
  opacity: 0.88;
}
.hubNav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.hubNavLink {
  color: rgba(252, 250, 245, 0.7);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}
.hubNavLink::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--hub-gold);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hubNavLink:hover,
.hubNavLink.active {
  color: #FCFAF5;
}
.hubNavLink:hover::after,
.hubNavLink.active::after {
  width: 100%;
}
.hubCta {
  background: var(--hub-gold);
  color: var(--hub-bg-dark);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  box-shadow: 0 4px 14px rgba(188, 168, 147, 0.25);
}
.hubCta:hover {
  background: var(--hub-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(188, 168, 147, 0.38);
}
@media (max-width: 820px) {
  .hubNav { gap: 1.2rem; }
  .hubNavLink { font-size: 0.65rem; }
  .hubCta { padding: 0.5rem 1rem; }
  .hubBrand { font-size: 0.85rem; }
}
@media (max-width: 560px) {
  .hubNavLink { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO SECTION — Kinetic Entrance & Ken Burns Ambient Motion
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubHero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  max-height: 960px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}
.hubHeroBg,
.hubHeroBgImg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.02);
  animation: hubHeroZoom 24s ease-in-out infinite alternate;
}
@keyframes hubHeroZoom {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.hubHeroOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 22, 34, 0.86) 0%, rgba(26, 36, 48, 0.72) 60%, rgba(44, 35, 26, 0.68) 100%);
  z-index: 1;
}
.hubHeroContent {
  position: relative;
  z-index: 2;
  max-width: 840px;
  padding: 2rem 0;
}
/* ═══════════════════════════════════════════════════════════════════════════════
   CINEMATIC ZOOM & FADE REVEAL SYSTEM (Hero Text Entrance)
   Replicates the signature luxury loading-screen zoom and blur clearance:
   - Dramatic scale-in (0.84 -> 1.0) with subtle vertical ascent
   - Film-grade blur clearance (12px -> 0px)
   - Staggered sequence: Badge (0.35s) -> Title (0.55s) -> Subtitle (0.8s) -> Actions (1.05s)
   ═══════════════════════════════════════════════════════════════════════════════ */
@keyframes cinematicBadgeZoom {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(14px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes cinematicTitleZoom {
  0% {
    opacity: 0;
    transform: scale(0.84) translateY(32px);
    filter: blur(12px);
  }
  50% {
    opacity: 0.85;
    filter: blur(2.5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes cinematicSubZoom {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes cinematicActionsZoom {
  0% {
    opacity: 0;
    transform: scale(0.94) translateY(16px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

.hubHeroOverline {
  display: inline-block;
  font-family: var(--hub-font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--hub-gold);
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.92) translateY(14px);
  filter: blur(5px);
  animation: cinematicBadgeZoom 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.35s forwards;
  will-change: opacity, transform, filter;
}
.hubHeroTitle {
  font-family: var(--hub-font-serif);
  font-size: clamp(2.8rem, 5.6vw, 4.8rem);
  font-weight: 400;
  color: var(--hub-text-light-h1);
  line-height: 1.14;
  letter-spacing: 0.01em;
  margin: 0 0 1.4rem;
  opacity: 0;
  transform: scale(0.84) translateY(32px);
  filter: blur(12px);
  animation: cinematicTitleZoom 1.45s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
  will-change: opacity, transform, filter;
}
.hubHeroSub {
  font-family: var(--hub-font-sans);
  font-size: 1.05rem;
  font-weight: 350;
  color: var(--hub-text-light-body);
  line-height: 1.78;
  max-width: 640px;
  margin: 0 0 2rem;
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  filter: blur(6px);
  animation: cinematicSubZoom 1.3s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  will-change: opacity, transform, filter;
}
.hubHeroTabs {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: scale(0.94) translateY(16px);
  filter: blur(4px);
  animation: cinematicActionsZoom 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
  will-change: opacity, transform, filter;
}
.hubTab {
  padding: 0.75rem 2rem;
  border: 1px solid rgba(252, 250, 245, 0.32);
  background: rgba(14, 22, 34, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(252, 250, 245, 0.85);
  font-family: var(--hub-font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.hubTab:hover {
  color: #FCFAF5;
  border-color: var(--hub-gold);
  background: rgba(14, 22, 34, 0.7);
  transform: translateY(-2px);
}
.hubTab.active {
  background: var(--hub-gold);
  border-color: var(--hub-gold);
  color: var(--hub-bg-dark);
  box-shadow: 0 4px 16px rgba(188, 168, 147, 0.3);
}
.hubPlotBadges {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
  opacity: 0;
  transform: scale(0.94) translateY(16px);
  filter: blur(4px);
  animation: cinematicActionsZoom 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.05s forwards;
  will-change: opacity, transform, filter;
}
.hubPlotBadge {
  padding: 0.5rem 1.15rem;
  background: rgba(14, 22, 34, 0.55);
  border: 1px solid rgba(188, 168, 147, 0.35);
  color: #FCFAF5;
  font-family: var(--hub-font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-radius: 3px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.hubPlotBadge:hover {
  border-color: var(--hub-gold);
  transform: translateY(-2px);
}
@keyframes hubFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   HERO: VILLAS & KOTHIS PAGE — Centered Alignment & Full Natural Brightness
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubHero--villas {
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
}
/* No brightness reduction: 100% natural, crisp video brightness */
.hubHero--villas .hubHeroOverlay {
  background: transparent !important;
  opacity: 0 !important;
  pointer-events: none;
}
.hubHero--villas .hubHeroBg {
  filter: none !important;
  opacity: 1 !important;
}

/* Centered & Balanced Hero Content */
.hubHero--villas .hubHeroContent {
  margin: 0 auto !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 820px !important;
}

.hubHero--villas .hubHeroOverline {
  margin: 0 auto 1.2rem !important;
  display: inline-block !important;
  background: rgba(14, 22, 34, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #FCFAF5;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.hubHero--villas .hubHeroTitle {
  text-align: center !important;
  margin: 0 0 1.2rem !important;
  color: #FFFFFF !important;
  text-shadow: 0 3px 25px rgba(0, 0, 0, 0.9), 0 1px 4px rgba(0, 0, 0, 0.9);
}
.hubHero--villas .hubHeroSub {
  text-align: center !important;
  margin: 0 auto 2.2rem !important;
  max-width: 660px !important;
  color: #FFFFFF !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 1px 3px rgba(0, 0, 0, 0.9);
  font-size: 1.05rem;
  line-height: 1.75;
}
.hubHero--villas .btnPrimaryLuxury {
  margin: 0 auto !important;
  display: inline-block !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

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

/* ═══════════════════════════════════════════════════════════════════════════════
   SECTION STRUCTURE & TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubSection {
  padding: 6.5rem 0;
  position: relative;
}
.hubSection--dark {
  background: var(--hub-bg-dark);
  color: var(--hub-text-light-body);
}
.hubSection--cream {
  background: var(--hub-bg-cream);
}
.hubSection--light {
  background: var(--hub-bg-light);
}

.sectionHeaderCentered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.sectionHeaderCentered.sa-visible {
  opacity: 1;
  transform: translateY(0);
}

.sectionOverline {
  display: inline-block;
  font-family: var(--hub-font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hub-text-dark-overline);
  margin-bottom: 1rem;
}
.hubSection--dark .sectionOverline {
  color: var(--hub-text-light-overline) !important;
}

.sectionHeading {
  font-family: var(--hub-font-serif);
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  color: var(--hub-text-dark-h2);
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 1.2rem;
  position: relative;
}
/* Eliminate harsh truncated underline */
.sectionHeading::after {
  display: none !important;
}
.hubSection--dark .sectionHeading {
  color: var(--hub-text-light-h2) !important;
}

.sectionSubheading {
  font-family: var(--hub-font-sans);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--hub-text-dark-sub);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
}
.hubSection--dark .sectionSubheading {
  color: var(--hub-text-light-sub) !important;
}

/* Section Divider */
.hubSectionDivider {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem 5vw;
  background: var(--hub-bg-cream);
  border-top: 1px solid rgba(188, 168, 147, 0.2);
  border-bottom: 1px solid rgba(188, 168, 147, 0.2);
}
.hubDividerLine {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(188, 168, 147, 0.6), transparent);
}
.hubDividerLabel {
  font-family: var(--hub-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--hub-gold-deep);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PROJECT BLOCKS (Split Row Media + Info)
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubProjectBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--hub-border-subtle);
}
.hubProjectBlock:last-child {
  border-bottom: none;
}
.hubProjectBlock--light {
  border-bottom-color: var(--hub-border-dark);
}
.hubProjectBlock--rev {
  direction: rtl;
}
.hubProjectBlock--rev > * {
  direction: ltr;
}
@media (max-width: 960px) {
  .hubProjectBlock {
    grid-template-columns: 1fr;
    gap: 2.8rem;
    direction: ltr !important;
  }
  .hubProjectBlock > * {
    direction: ltr !important;
  }
}

/* Media Container */
.hubProjectMedia {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #0E1622;
  border: 1px solid rgba(188, 168, 147, 0.2);
  box-shadow: 0 10px 30px rgba(14, 22, 34, 0.08);
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.hubProjectBlock--rev .hubProjectMedia {
  transform: translateX(32px);
}
.hubProjectMedia.sa-visible {
  opacity: 1;
  transform: translateX(0);
}
.hubProjectMedia:hover {
  box-shadow: 0 16px 42px rgba(14, 22, 34, 0.14);
}
.hubProjectMedia img,
.hubProjectMedia video {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 5px;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.hubProjectMedia:hover img {
  transform: scale(1.03);
}

/* Info Column */
.hubProjectInfo {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}
.hubProjectBlock--rev .hubProjectInfo {
  transform: translateX(-32px);
}
.hubProjectInfo.sa-visible {
  opacity: 1;
  transform: translateX(0);
}

.hubProjectTag {
  display: inline-block;
  font-family: var(--hub-font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hub-gold-deep);
  border: 1px solid rgba(140, 115, 91, 0.35);
  background: rgba(188, 168, 147, 0.08);
  padding: 0.32rem 0.95rem;
  border-radius: 3px;
  margin-bottom: 1.2rem;
}
.hubProjectInfo--light .hubProjectTag {
  color: var(--hub-gold-light);
  border-color: rgba(188, 168, 147, 0.5);
  background: rgba(188, 168, 147, 0.12);
}

.hubProjectTitle {
  font-family: var(--hub-font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--hub-text-dark-h1);
  line-height: 1.22;
  margin: 0 0 1.2rem;
}
.hubProjectInfo--light .hubProjectTitle {
  color: var(--hub-text-light-h1) !important;
}

.hubProjectDesc {
  font-family: var(--hub-font-sans);
  font-size: 0.96rem;
  font-weight: 400;
  color: var(--hub-text-dark-body);
  line-height: 1.82;
  margin-bottom: 2rem;
}
.hubProjectInfo--light .hubProjectDesc {
  color: var(--hub-text-light-body) !important;
}

/* Specification Box */
.hubSpecRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.4rem 1.6rem;
  background: rgba(14, 22, 34, 0.025);
  border-radius: 4px;
  border: 1px solid var(--hub-border-subtle);
  transition: border-color 0.3s ease;
}
.hubProjectInfo--light .hubSpecRow {
  background: rgba(252, 250, 245, 0.04);
  border-color: var(--hub-border-dark);
}
.hubSpecRow:hover {
  border-color: var(--hub-border-gold);
}
.hubSpec {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hubSpecK {
  font-family: var(--hub-font-sans);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--hub-text-dark-muted);
  text-transform: uppercase;
}
.hubSpecV {
  font-family: var(--hub-font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--hub-text-dark-h1);
}
.hubSpec--light .hubSpecK {
  color: var(--hub-text-light-muted) !important;
}
.hubSpec--light .hubSpecV {
  color: var(--hub-text-light-h1) !important;
}

/* Gallery Strip */
.hubProjectGallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.hubGalleryItem {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(14, 22, 34, 0.1);
  background: #0E1622;
  box-shadow: 0 2px 10px rgba(14, 22, 34, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.hubGalleryItem img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.hubGalleryItem:hover {
  transform: translateY(-3px);
  border-color: var(--hub-gold);
  box-shadow: 0 8px 20px rgba(14, 22, 34, 0.12);
}
.hubGalleryItem:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Villa Gallery Grid */
.hubVillaGalleryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hubVillaPhoto {
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(14, 22, 34, 0.08);
  background: #0E1622;
  box-shadow: 0 3px 12px rgba(14, 22, 34, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}
.hubVillaPhoto img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.hubVillaPhoto:hover {
  transform: translateY(-4px);
  border-color: var(--hub-gold);
  box-shadow: 0 10px 25px rgba(14, 22, 34, 0.14);
}
.hubVillaPhoto:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* Actions */
.hubProjectActions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   BUTTONS — Elevated Luxury Styling
   ═══════════════════════════════════════════════════════════════════════════════ */
.btnPrimaryLuxury {
  font-family: var(--hub-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--hub-bg-dark);
  color: #FCFAF5 !important;
  border: 1px solid var(--hub-gold);
  padding: 0.92rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(14, 22, 34, 0.12);
  cursor: pointer;
}
.btnPrimaryLuxury:hover {
  background: var(--hub-gold);
  color: var(--hub-bg-dark) !important;
  border-color: var(--hub-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(188, 168, 147, 0.35);
}

.btnSecondaryOutline {
  font-family: var(--hub-font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--hub-text-dark-h1) !important;
  border: 1px solid rgba(14, 22, 34, 0.28);
  padding: 0.92rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.btnSecondaryOutline:hover {
  border-color: var(--hub-gold-deep);
  color: var(--hub-gold-deep) !important;
  background: rgba(188, 168, 147, 0.08);
  transform: translateY(-3px);
}
.hubSection--dark .btnSecondaryOutline,
.hubProjectInfo--light .btnSecondaryOutline {
  color: #FCFAF5 !important;
  border-color: rgba(252, 250, 245, 0.35);
}
.hubSection--dark .btnSecondaryOutline:hover,
.hubProjectInfo--light .btnSecondaryOutline:hover {
  border-color: var(--hub-gold);
  color: var(--hub-gold) !important;
  background: rgba(188, 168, 147, 0.12);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   WHY PLOTS GRID — Cards with Smooth Hover Elevation & Icon Scale
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubWhyGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2rem;
  margin-top: 3.5rem;
}
.hubWhyCard {
  padding: 2.8rem 2.2rem;
  background: var(--hub-bg-card);
  border: 1px solid var(--hub-border-subtle);
  border-radius: 6px;
  text-align: center;
  box-shadow: var(--hub-shadow-card);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.hubWhyCard.sa-visible {
  opacity: 1;
  transform: translateY(0);
}
.hubWhyCard:hover {
  box-shadow: var(--hub-shadow-hover);
  border-color: var(--hub-border-gold);
  transform: translateY(-8px) !important;
}
.hubWhyIcon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.hubWhyCard:hover .hubWhyIcon {
  transform: scale(1.15) translateY(-3px);
}
.hubWhyCard h3,
.hubWhyCard h4 {
  font-family: var(--hub-font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0 0 0.9rem;
  color: var(--hub-text-dark-h1);
}
.hubWhyCard p {
  font-family: var(--hub-font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--hub-text-dark-sub);
  line-height: 1.72;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   PLOT SIZE CARDS (Tier Cards)
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubPlotSizeGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  margin: 2rem 0;
}
.hubPlotCard {
  padding: 1.8rem 1.3rem;
  border: 1px solid var(--hub-border-subtle);
  border-radius: 6px;
  text-align: center;
  position: relative;
  background: var(--hub-bg-card);
  box-shadow: var(--hub-shadow-card);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.hubPlotCard.sa-visible {
  opacity: 1;
  transform: translateY(0);
}
.hubPlotCard:hover {
  box-shadow: var(--hub-shadow-hover);
  border-color: var(--hub-border-gold);
  transform: translateY(-6px);
}
.hubPlotCard--featured {
  background: var(--hub-bg-dark);
  border-color: var(--hub-gold);
  box-shadow: 0 10px 32px rgba(14, 22, 34, 0.2);
}
.hubPlotCard--featured .hubPlotSize {
  color: var(--hub-text-light-h1);
}
.hubPlotCard--featured .hubPlotType {
  color: var(--hub-gold);
}
.hubPlotCard--featured .hubPlotPrice {
  color: var(--hub-text-light-h1);
}
.hubPlotCard--featured .hubPlotTag {
  color: var(--hub-gold-light);
}
.hubPlotBadgePill {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--hub-gold);
  color: var(--hub-bg-dark);
  font-family: var(--hub-font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(188, 168, 147, 0.4);
}
.hubPlotSize {
  font-family: var(--hub-font-sans);
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--hub-text-dark-h1);
  margin-bottom: 0.35rem;
}
.hubPlotType {
  font-family: var(--hub-font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--hub-text-dark-muted);
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}
.hubPlotPrice {
  font-family: var(--hub-font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--hub-text-dark-h1);
  margin-bottom: 0.5rem;
}
.hubPlotTag {
  font-family: var(--hub-font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--hub-gold-deep);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CORRIDOR CARDS (Key Locations)
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubCorridorGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}
.hubCorridorCard {
  padding: 2.4rem 1.8rem;
  background: var(--hub-bg-card);
  border: 1px solid var(--hub-border-subtle);
  border-left: 4px solid var(--hub-gold);
  border-radius: 4px;
  box-shadow: var(--hub-shadow-card);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-left-color 0.35s ease;
}
.hubCorridorCard.sa-visible {
  opacity: 1;
  transform: translateY(0);
}
.hubCorridorCard:hover {
  box-shadow: var(--hub-shadow-hover);
  border-left-color: var(--hub-gold-bronze);
  transform: translateY(-6px);
}
.hubCorridorName {
  font-family: var(--hub-font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--hub-text-dark-h1);
  margin-bottom: 0.85rem;
}
.hubCorridorCard p {
  font-family: var(--hub-font-sans);
  font-size: 0.86rem;
  font-weight: 400;
  color: var(--hub-text-dark-sub);
  line-height: 1.7;
  margin: 0 0 1.2rem;
}
.hubCorridorStat {
  font-family: var(--hub-font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--hub-gold-deep);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   CTA STRIP — Midnight Ocean & Champagne Gradient
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubCtaStrip {
  background: linear-gradient(135deg, #0E1622 0%, #162436 60%, #201A15 100%);
  padding: 5.5rem 0;
  border-top: 1px solid rgba(188, 168, 147, 0.25);
}
.hubCtaInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
}
.hubCtaTitle {
  font-family: var(--hub-font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  color: var(--hub-text-light-h1);
  margin: 0 0 0.8rem;
  line-height: 1.2;
}
.hubCtaSub {
  font-family: var(--hub-font-sans);
  font-size: 0.98rem;
  font-weight: 350;
  color: var(--hub-text-light-sub);
  margin: 0;
  line-height: 1.7;
}
.hubCtaBtns {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}
.hubCtaBtns .btnPrimaryLuxury {
  background: var(--hub-gold);
  color: var(--hub-bg-dark) !important;
  border-color: var(--hub-gold);
}
.hubCtaBtns .btnPrimaryLuxury:hover {
  background: var(--hub-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(188, 168, 147, 0.4);
}
.hubCtaBtns .btnSecondaryOutline {
  color: #FCFAF5 !important;
  border-color: rgba(252, 250, 245, 0.38);
}
.hubCtaBtns .btnSecondaryOutline:hover {
  border-color: var(--hub-gold);
  color: var(--hub-gold) !important;
  background: rgba(188, 168, 147, 0.12);
  transform: translateY(-3px);
}
@media (max-width: 860px) {
  .hubCtaInner {
    flex-direction: column;
    text-align: center;
  }
  .hubCtaBtns {
    flex-direction: column;
    width: 100%;
  }
  .hubCtaBtns a {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════════ */
.hubFooter {
  background: #080D14;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(252, 250, 245, 0.08);
}
.hubFooterInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
  text-align: center;
}
.hubFooterBrand {
  color: #FCFAF5;
  font-family: var(--hub-font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.hubFooterLinks {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hubFooterLink {
  color: rgba(252, 250, 245, 0.65);
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.hubFooterLink:hover {
  color: var(--hub-gold);
}
.hubFooterCopy {
  color: rgba(252, 250, 245, 0.38);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hubWhyGrid { grid-template-columns: repeat(2, 1fr); }
  .hubPlotSizeGrid { grid-template-columns: repeat(2, 1fr); }
  .hubCorridorGrid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hubSection { padding: 4.5rem 0; }
  .hubProjectBlock { gap: 2rem; padding: 3rem 0; }
  .hubProjectMedia img,
  .hubProjectMedia video { height: 280px; }
  .hubVillaGalleryGrid { grid-template-columns: repeat(2, 1fr); }
  .hubProjectGallery { grid-template-columns: repeat(2, 1fr); }
  .hubProjectGallery .hubGalleryItem img { height: 95px; }
  .hubPlotSizeGrid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .hubWhyGrid { grid-template-columns: 1fr; }
  .hubCorridorGrid { grid-template-columns: 1fr; }
  .hubPlotBadges { flex-direction: column; }
  .hubHeroTabs { flex-direction: column; }
  .hubTab { width: 100%; text-align: center; box-sizing: border-box; }
}
