/* ============================================
   BAGRATIONI DEVELOPMENT — style.css
   Shindi Agency 2025
   ============================================ */

/* ── FONTS ── */
@font-face {
  font-family: 'FiraGO';
  src: url('https://bd.ge/_website/assets/fonts/FiraGO-Regular.woff') format('woff'),
       url('https://bd.ge/_website/assets/fonts/FiraGO-Regular.otf')  format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'FiraGO Bold';
  src: url('https://bd.ge/_website/assets/fonts/FiraGO-Bold.woff') format('woff'),
       url('https://bd.ge/_website/assets/fonts/FiraGO-Bold.otf')  format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaGeo';
  src: url('https://bd.ge/_website/assets/fonts/helvetica-neue-lt-geo-75-bold-caps.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── VARIABLES ── */
:root {
  --navy:        #0A2D56;
  --navy-dark:   #061d38;
  --red:         #BC022E;
  --red-dark:    #960025;
  --gold:        #C98C3A;
  --beige:       #D6C3A1;
  --beige-light: #EDE3D3;
  --dark:        #1E1B1C;
  --white:       #FFFFFF;
  --text-muted:  #555555;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'FiraGO', 'Segoe UI', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ── LOADER ── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo-wrap {
  position: relative;
  width: 344px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.loader-logo-img {
  width: 290px;
  height: auto;
  opacity: 0;
}
.loader-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,140,58,0.7);
  transform: translateX(0);
  opacity: 0;
}
.loader-gold-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: 12px;
  transition: width 0.5s ease;
}
@keyframes loaderCursorSweep {
  0%   { transform: translateX(0);    opacity: 1; }
  85%  { transform: translateX(288px); opacity: 1; }
  100% { transform: translateX(304px); opacity: 0; }
}
@keyframes loaderLogoReveal {
  0%   { clip-path: inset(0 100% 0 0); opacity: 1; }
  100% { clip-path: inset(0 0%   0 0); opacity: 1; }
}
@keyframes loaderFadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.loader-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  opacity: 0;
}


/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-weight: 700;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--red);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: rgba(0,0,0,0.38);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.55);
}

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--red);
}
.section-label--gold { color: var(--gold); }
.section-label--gold::before { background: var(--gold); }
.section-label--center { justify-content: center; }
.section-label--center::before { display: none; }

/* ── SECTION TITLES ── */
.section-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 28px;
}
.section-title strong { font-weight: 700; display: block; }
.section-title--white { color: var(--white); }

/* ============================================
   NAV
   ============================================ */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
  background: linear-gradient(to bottom, rgba(6,20,40,0.75), transparent);
}
.nav-wrapper.scrolled {
  background: rgba(6, 20, 40, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-wrapper.scrolled .nav-topbar {
  display: none;
}
.nav-wrapper.scrolled .nav {
  height: 84px;
}
.nav-wrapper.scrolled .nav-logo img {
  height: 70px;
}

/* ── TOP BAR ── */
.nav-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-phones {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-phones a {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phones a:hover { color: var(--gold); }
.nav-phones a svg { width: 13px; height: 13px; opacity: 0.7; flex-shrink: 0; }

.nav-topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Social icons */
.nav-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.75);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.nav-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,140,58,0.1);
}
.nav-social a svg { width: 13px; height: 13px; }

/* Language dropdown */
.nav-lang-dropdown {
  position: relative;
}
.nav-lang-trigger {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 5px 10px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-lang-trigger:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}
.nav-lang-trigger svg { opacity: 0.6; }
.nav-lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--navy-dark);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  overflow: hidden;
  min-width: 80px;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.nav-lang-menu.open { display: block; }
.nav-lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 9px 16px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-lang-menu button:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.nav-lang-menu button.active {
  color: var(--gold);
}

/* ── NAV LIVE ── */
.nav-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  line-height: 1;
}
.nav-live:hover { color: var(--white); }
.nav-live svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.nav-live-dot {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e03030;
  flex-shrink: 0;
  animation: liveBlink 1.4s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* ── MAIN NAV BAR ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 120px;
  transition: height 0.4s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100px;
  width: auto;
  transition: height 0.4s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-menu a {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-menu a:hover { color: var(--white); }
.nav-menu .nav-cta,
button.nav-cta {
  padding: 10px 22px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.nav-menu .nav-cta:hover,
button.nav-cta:hover { background: var(--red-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 100px;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,20,40,0.92) 0%,
    rgba(6,20,40,0.3) 60%,
    rgba(6,20,40,0.15) 100%
  );
}
.hero-curve {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 260px;
  pointer-events: none;
  opacity: 0.12;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-title-highlight {
  display: inline;
  /*background: #C98C3A;  */
  color: var(--white);
  padding: 4px 14px 6px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.15;
}
.hero-sub {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  margin-top: 24px;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.hero-actions { display: flex; gap: 14px; align-items: center; }

/* Hero-scoped button overrides — slimmer, gold primary, minimal outline */
.hero-actions .btn-primary {
  background: #BC022E;
  padding: 12px 26px;
  font-size: 11px;
  letter-spacing: 0.12em;
  gap: 8px;
}
.hero-actions .btn-primary:hover { background: var(--red-dark); transform: none; }
.hero-actions .btn-outline {
  padding: 11px 22px;
  font-size: 11px;
  letter-spacing: 0.1em;
  border-color: rgba(255,255,255,0.35);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  gap: 8px;
}
.hero-actions .btn-outline:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
}

.hero-dots {
  position: absolute;
  bottom: 40px; right: 60px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero-dot {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  transition: background 0.3s, width 0.3s;
}
.hero-dot.active { background: var(--gold); width: 40px; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 60px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-image {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  background: var(--navy);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-content {
  padding: 100px 80px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ============================================
   STATS
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--navy);
  border-top: 3px solid var(--red);
}
.stat-item {
  padding: 53px 39px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 44px; height: 44px;
  margin: 0 auto 18px;
  opacity: 0.6;
}
.stat-label {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.stat-sub {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects {
  padding: 120px 60px;
  background: var(--beige-light);
}
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.project-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover img { transform: scale(1.05); }
.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,20,40,0.88) 0%, transparent 60%);
}
.project-badge {
  position: absolute;
  top: 24px; left: 24px;
  padding: 5px 14px;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 1px;
}
.badge-done   { background: var(--gold); color: var(--dark); }
.badge-active { background: var(--red);  color: var(--white); }

.project-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.project-name {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.1;
}
.project-loc {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.project-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.project-link:hover { gap: 16px; }

/* ============================================
   LIFESTYLE
   ============================================ */
.lifestyle {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.lifestyle-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lifestyle-text {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.lifestyle-image {
  position: relative;
  overflow: hidden;
}
.lifestyle-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.lifestyle-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,20,40,0.25);
}

/* Payment grid on dark (lifestyle section) */
.lifestyle .payment-grid {
  border-color: rgba(255,255,255,0.15);
  margin-bottom: 36px;
}
.lifestyle .payment-grid .pay-item {
  background: rgba(255,255,255,0.06);
  border-right-color: rgba(255,255,255,0.1);
}
.lifestyle .payment-grid .pay-label {
  color: rgba(255,255,255,0.5);
}

/* ============================================
   INVESTMENT
   ============================================ */
.investment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.investment-image {
  position: relative;
  overflow: hidden;
}
.investment-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.investment-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,20,40,0.2);
}
.investment-content {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.investment-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(10,45,86,0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 36px;
}
.pay-item {
  padding: 24px 20px;
  background: var(--navy);
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pay-item:last-child { border-right: none; }
.pay-num {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pay-label {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Payment grid — lifestyle premium card variant */
.payment-grid--lifestyle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border: none;
  border-radius: 0;
  overflow: visible;
  margin-top: 48px;
  margin-bottom: 0;
}
.payment-grid--lifestyle .payment-item {
  background: rgba(255,255,255,0.05);
  border-top: 2px solid var(--gold);
  border-radius: 2px;
  padding: 36px 28px 32px;
  text-align: left;
  transition: background 0.25s;
}
.payment-grid--lifestyle .payment-item:hover {
  background: rgba(255,255,255,0.09);
}
.payment-grid--lifestyle .payment-number {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 12px;
}
.payment-grid--lifestyle .payment-label {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  display: block;
}
.payment-grid--lifestyle .payment-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
@media (max-width: 768px) {
  .payment-grid--lifestyle {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* ============================================
   NEWS SECTION
   ============================================ */
.news-section {
  padding: 120px 60px;
  background: var(--white);
  overflow-x: hidden;
}
.news-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10,45,86,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10,45,86,0.14);
}
.news-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
}
.news-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,20,40,0.65) 0%, rgba(6,20,40,0.05) 60%);
}
.news-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-card-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
/* news-card-* aliases (used in news.html) */
.news-card-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  position: absolute;
  bottom: 14px;
  left: 18px;
  z-index: 1;
}
.news-card-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 14px;
}
.news-card-excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 24px;
}
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: auto;
}
.news-card-link:hover { gap: 14px; color: var(--red-dark); }
.news-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.news-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 12px;
}
.news-excerpt {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 20px;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s, color 0.2s;
  align-self: flex-start;
}
.news-link:hover { gap: 14px; color: var(--red-dark); }

/* ============================================
   LEAD FORM
   ============================================ */
.lead-form-section {
  background: var(--beige);
  padding: 120px 60px;
}
.lead-form-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.lead-form-inner .section-title { color: var(--navy); margin-bottom: 12px; }

/* ── HORIZONTAL VARIANT ── */
.lead-form-horizontal {
  max-width: 1100px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lead-form-horizontal .section-title { color: var(--navy); margin-bottom: 12px; }
.lead-form-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-form-left .form-desc {
  margin-bottom: 0;
}
.lead-form-right {
  background: var(--white);
  padding: 44px 40px;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(10,45,86,0.1);
}
.form-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #6a5a4a;
  margin-bottom: 48px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
  text-align: left;
}
.form-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.form-field label {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.form-field input {
  height: 52px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(10,45,86,0.18);
  border-radius: 2px;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.form-field input:focus { border-color: var(--navy); }

/* Messenger select dropdown */
.messenger-select {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(10,45,86,0.18);
  border-radius: 2px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230A2D56' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  transition: border-color 0.2s;
}
.messenger-select:focus { border-color: var(--navy); }

/* Phone country code dropdown */
.phone-input-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(10,45,86,0.18);
  border-radius: 2px;
  overflow: visible;
  background: var(--white);
  position: relative;
}
.phone-input-wrap:focus-within {
  border-color: var(--navy);
}
.cc-select {
  position: relative;
  flex-shrink: 0;
}
.cc-trigger {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: 52px;
  background: rgba(10,45,86,0.04);
  border: none;
  border-right: 1px solid rgba(10,45,86,0.12);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  transition: background 0.2s;
}
.cc-trigger:hover { background: rgba(10,45,86,0.08); }
.cc-flag { display: none; }
.cc-code { font-family: 'FiraGO', sans-serif; font-size: 13px; font-weight: 600; }
.cc-trigger svg { opacity: 0.5; flex-shrink: 0; }
.cc-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid rgba(10,45,86,0.15);
  border-radius: 2px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
  z-index: 400;
  min-width: 210px;
  max-height: 240px;
  overflow-y: auto;
}
.cc-dropdown.open { display: block; }
.cc-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-size: 13px;
  color: var(--dark);
  border-bottom: 1px solid rgba(10,45,86,0.06);
  transition: background 0.15s;
}
.cc-option:hover { background: rgba(10,45,86,0.05); }
.cc-option:last-child { border-bottom: none; }
.cc-option-flag { font-size: 17px; }
.cc-option-name { flex: 1; font-size: 12px; color: var(--text-muted); }
.cc-option-code { font-size: 12px; font-weight: 600; color: var(--navy); }
.phone-input-wrap input {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
  min-width: 0;
  height: 52px;
}
.phone-input-wrap input:focus { outline: none; border-color: transparent !important; }

.btn-submit {
  width: 100%;
  height: 58px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 2px;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--red-dark); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 80px 60px 0;
  border-top: 1px solid rgba(201,140,58,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo img { height: 100px; width: auto; }
.footer-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
  margin-bottom: 0;
}
.footer-nav-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.contact-icon { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; opacity: 0.5; }
.contact-text { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,140,58,0.1);
}
.footer-social a svg { width: 14px; height: 14px; }

.footer-popup-btn {
  font-size: 11px;
  padding: 12px 24px;
  margin-top: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-made { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ============================================
   POPUP MODAL
   ============================================ */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,20,40,0.82);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 20px;
}
.popup-overlay.active { display: flex; }
.popup-modal {
  background: var(--white);
  border-radius: 4px;
  padding: 52px 48px;
  max-width: 620px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(10,45,86,0.06);
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--navy);
  line-height: 1;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.popup-close:hover { background: rgba(10,45,86,0.12); }

/* ============================================
   VIDEO POPUP
   ============================================ */
.video-popup .video-popup-modal {
  position: relative;
  width: 90vw;
  max-width: 1020px;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.65);
}
.video-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.popup-close--light {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}
.popup-close--light:hover { background: rgba(255,255,255,0.28); }

/* ── "სხვა" messenger field ── */
.messenger-other-field {
  display: none;
  margin-bottom: 10px;
}
.messenger-other-field.visible { display: block; }
.messenger-other-field input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid rgba(10,45,86,0.18);
  border-radius: 2px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.messenger-other-field input:focus { border-color: var(--navy); }

/* ============================================
   SCROLL-TO-TOP BUTTON
   ============================================ */
.scroll-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: transparent;
  border: 1px solid rgba(201,140,58,0.5);
  border-radius: 2px;
  color: var(--gold);
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  width: fit-content;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.scroll-top-btn:hover {
  background: rgba(201,140,58,0.12);
  border-color: var(--gold);
  color: #e0a84e;
}
.scroll-top-btn svg { flex-shrink: 0; }

/* ============================================
   FLOATING CONTACT BUTTON
   ============================================ */
.floating-contact {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.floating-panel {
  display: none;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.18);
  padding: 20px;
  width: 280px;
  border-top: 3px solid var(--gold);
  animation: floatIn 0.25s ease;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.floating-panel.open { display: block; }
.floating-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.floating-avatar-large {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.floating-name {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}
/* Chat bubble style for the greeting message */
.floating-message {
  display: inline-block;
  background: #eef3fa;
  color: var(--navy);
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  padding: 8px 12px;
  border-radius: 0 10px 10px 10px;
  margin-top: 6px;
  position: relative;
  box-shadow: 0 1px 3px rgba(10,45,86,0.10);
}
.floating-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -7px;
  border-width: 0 7px 7px 0;
  border-style: solid;
  border-color: transparent #eef3fa transparent transparent;
}
.floating-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  transition: opacity 0.2s, transform 0.2s;
}
.floating-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.floating-btn--wa     { background: #25D366; }
.floating-btn--tg     { background: #2AABEE; }
.floating-btn--viber  { background: #7360F2; }
.floating-btn--call   { background: var(--navy); }
.floating-trigger {
  width: 62px;
  height: 62px;
  background: var(--gold);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(201,140,58,0.45);
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.floating-trigger:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(201,140,58,0.55);
}
.floating-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: pulseRing 2.5s ease-out infinite;
}
@keyframes pulseRing {
  0%   { opacity: 0.55; transform: scale(1); }
  100% { opacity: 0;    transform: scale(1.7); }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible      { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */

/* ── MOBILE NAV CTA BUTTON ── */
.nav-mobile-cta {
  display: none;
}
@media (max-width: 1024px) {
  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: background 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-mobile-cta:hover { background: var(--red-dark); }
}

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.nav-drawer.open { max-height: 680px; }
.nav-drawer ul {
  list-style: none;
  padding: 16px 0;
}
.nav-drawer ul li a {
  display: block;
  padding: 14px 24px;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, background 0.2s;
}
.nav-drawer ul li a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.nav-drawer ul li:last-child a {
  margin: 16px 24px;
  padding: 14px 24px;
  background: var(--red);
  color: var(--white);
  border: none;
  text-align: center;
  border-radius: 2px;
}
.nav-drawer ul li:last-child a:hover { background: var(--red-dark); }
.nav-drawer-bottom {
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-drawer-phones {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-drawer-phones a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-drawer-phones a svg { width: 13px; height: 13px; opacity: 0.6; }
.nav-drawer-social { display: flex; gap: 10px; }
.nav-drawer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
}
.nav-drawer-social a svg { width: 14px; height: 14px; }

/* ============================================
   TABLET — max 1024px
   ============================================ */
@media (max-width: 1024px) {
  .nav-topbar { padding: 8px 32px; }
  .nav { padding: 0 32px; height: 90px; }
  .nav-logo img { height: 70px; }
  .nav-wrapper.scrolled .nav { height: 68px; }
  .nav-wrapper.scrolled .nav-logo img { height: 50px; }
  .nav-menu { gap: 18px; }
  .nav-menu a { font-size: 10px; }
  .hero-content { padding: 0 32px; }
  .hero-title { font-size: clamp(40px, 6vw, 64px); }
  .about-content { padding: 80px 48px; }
  .about-image { min-height: 420px; }
  .stat-item { padding: 40px 22px; }
  .projects { padding: 80px 32px; }
  .lifestyle-content { padding: 80px 48px; }
  .investment-content { padding: 80px 48px; }
  .news-section { padding: 80px 32px; }
  .news-grid { gap: 20px; }
  .lead-form-section { padding: 80px 32px; }
  .lead-form-horizontal { gap: 48px; }
  .lead-form-right { padding: 36px 32px; }
  footer { padding: 60px 32px 0; }
  .footer-grid { gap: 40px; }
  .footer-logo img { height: 70px; }
}

/* ============================================
   MOBILE — max 768px
   ============================================ */
@media (max-width: 768px) {
  /* .nav-topbar { display: none; } */
  .nav-phones { display: none; }
  .nav { padding: 0 20px; height: 70px; }
  .nav-logo img { height: 66px; }
  .nav-wrapper.scrolled .nav { height: 58px; }
  .nav-wrapper.scrolled .nav-logo img { height: 52px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }

  .hero { min-height: 100svh; padding-bottom: 60px; align-items: flex-end; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero-badge { font-size: 10px; margin-bottom: 16px; }
  .hero-title { font-size: clamp(22px, 7.5vw, 44px); margin-bottom: 8px; }
  .hero-sub { font-size: 11px; margin-top: 16px; margin-bottom: 24px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-actions .btn-primary { width: 100%; justify-content: center; padding: 13px 24px; }
  .hero-actions .btn-outline  { width: 100%; justify-content: center; padding: 12px 24px; }
  .hero-curve { display: none; }
  .hero-scroll { display: none; }
  .hero-dots { right: 20px; bottom: 24px; }

  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 280px; order: -1; }
  .about-content { padding: 48px 20px; }
  .section-title { font-size: clamp(28px, 7vw, 40px); }

  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 30px 16px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .stat-label { font-size: 13px; }
  .stat-sub { font-size: 11px; }

  .projects { padding: 60px 20px; }
  .projects-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
  .projects-grid { grid-template-columns: 1fr; gap: 16px; }
  .project-card { aspect-ratio: 16 / 10; }

  .lifestyle { grid-template-columns: 1fr; }
  .lifestyle-image { min-height: 260px; }
  .lifestyle-content { padding: 48px 20px; order: 1; }
  .lifestyle-text { margin-bottom: 24px; }

  .investment { grid-template-columns: 1fr; }
  .investment-image { min-height: 260px; }
  .investment-content { padding: 48px 20px; }
  .investment-text { margin-bottom: 24px; }
  .payment-grid { margin-bottom: 24px; }

  .news-section { padding: 60px 20px; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 32px; }
  .news-grid { grid-template-columns: 1fr; gap: 20px; }

  .lead-form-section { padding: 60px 20px; }
  .lead-form-horizontal {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lead-form-right { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-desc { margin-bottom: 32px; }

  footer { padding: 48px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-logo img { height: 60px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; padding: 20px 0; }
  .scroll-top-btn { width: 100%; justify-content: center; }

  .popup-modal { padding: 40px 24px; }

  .floating-contact { bottom: 20px; right: 20px; }
  .floating-panel { width: 260px; }
}

/* ============================================
   SMALL — max 480px
   ============================================ */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(22px, 9vw, 44px); }
  .stats-row { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
  .stat-item:last-child { border-bottom: none !important; }
  .project-card { aspect-ratio: 4 / 3; }
  .pay-num { font-size: 28px; }
  .pay-label { font-size: 9px; }
  .btn-submit { font-size: 11px; letter-spacing: 0.15em; }
}

/* ============================================================
   INTERNAL PAGES — shared
   ============================================================ */

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: var(--navy-dark);
  padding: 200px 60px 90px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); font-weight: 400; }
.breadcrumb-current { color: var(--gold); }
.page-hero-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  line-height: 1.75;
}

/* ── GENERIC PAGE SECTION ── */
.page-section {
  padding: 100px 60px;
}
.page-section--beige  { background: var(--beige-light); }
.page-section--navy   { background: var(--navy); }
.page-section--dark   { background: var(--navy-dark); }
.page-section--white  { background: var(--white); }
.page-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── TWO-COLUMN CONTENT (image + text) ── */
.content-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.content-cols--reverse { direction: rtl; }
.content-cols--reverse > * { direction: ltr; }
.content-col-img {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
}
.content-col-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.content-col-text { display: flex; flex-direction: column; gap: 0; }
.content-col-text .section-title { margin-bottom: 20px; }
.content-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.content-body--white { color: rgba(255,255,255,0.65); }

/* ── VALUES / CARDS GRID (3-col) ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.info-card {
  background: var(--white);
  border-radius: 2px;
  padding: 40px 32px;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(10,45,86,0.07);
}
.info-card--navy {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  box-shadow: none;
}
.info-card-icon {
  width: 48px; height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}
.info-card-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.info-card--navy .info-card-title { color: var(--white); }
.info-card-text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}
.info-card--navy .info-card-text { color: rgba(255,255,255,0.55); }

/* ── FILTER TABS (projects) ── */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-tab {
  padding: 10px 24px;
  border: 1px solid rgba(10,45,86,0.2);
  border-radius: 2px;
  background: transparent;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-tab:hover,
.filter-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── PROJECTS PAGE CARDS ── */
.page-section .project-card {
  aspect-ratio: unset;
  overflow: visible;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(10,45,86,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.page-section .project-card:hover {
  box-shadow: 0 8px 40px rgba(10,45,86,0.14);
  transform: translateY(-4px);
}
.project-card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 2px 2px 0 0;
  aspect-ratio: 16/10;
}
.project-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.page-section .project-card:hover .project-card-img-wrap img { transform: scale(1.05); }
.project-card-color-bar { height: 3px; flex-shrink: 0; }
.project-card-body {
  background: #fff;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  border-radius: 0 0 2px 2px;
}
.project-card-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}
.project-card-location {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.project-card-location svg { flex-shrink: 0; color: var(--gold); }

.project-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 14px 0;
  border-top: 1px solid rgba(10,45,86,0.08);
  border-bottom: 1px solid rgba(10,45,86,0.08);
  margin: 0;
}
.project-card-spec { display: flex; flex-direction: column; gap: 3px; }
.project-card-spec-lbl {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.project-card-spec-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* ── SALES TEAM (contact page) ── */
.sales-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}
.sales-team-card {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px 28px;
  box-shadow: 0 2px 16px rgba(10,45,86,0.07);
  border: 1px solid rgba(201,140,58,0.12);
}
.sales-team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  overflow: hidden;
  border: 3px solid rgba(201,140,58,0.3);
}
.sales-team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.sales-team-photo-placeholder {
  width: 100%; height: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
}
.sales-team-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
}
.sales-team-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.sales-team-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.sales-team-phone:hover { color: var(--gold); }
.sales-team-phone svg { color: var(--gold); }
@media (max-width: 768px) {
  .sales-team-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── FOUNDER SECTION (about page) ── */
.founder-section {
  display: flex;
  gap: 64px;
  align-items: center;
}
.founder-img-wrap {
  flex-shrink: 0;
  width: 416px;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.founder-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.founder-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 8px 16px;
}
.founder-text { flex: 1; }
.founder-quote {
  font-size: 20px;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
  margin: 20px 0 28px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
}
.founder-bio {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .founder-section { flex-direction: column; gap: 32px; }
  .founder-img-wrap { width: 100%; height: 320px; }
}

/* ── AMENITIES GRID (lifestyle) ── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.amenity-item {
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(10,45,86,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.amenity-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(10,45,86,0.12);
}
.amenity-icon {
  width: 44px; height: 44px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.amenity-label {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* ── INVEST HIGHLIGHTS (investment) ── */
.invest-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(10,45,86,0.12);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 60px;
}
.invest-highlight {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(10,45,86,0.12);
  background: var(--white);
}
.invest-highlight:last-child { border-right: none; }
.invest-num {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.invest-num span { color: var(--gold); }
.invest-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.invest-desc {
  font-size: 12px;
  color: rgba(10,45,86,0.4);
  margin-top: 6px;
}

/* ── NEWS PAGINATION ── */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}
.page-btn {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10,45,86,0.18);
  border-radius: 2px;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.page-btn:hover,
.page-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── NEWS SINGLE ── */
.article-hero {
  height: 480px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.article-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,20,40,0.9) 0%, rgba(6,20,40,0.2) 70%);
}
.article-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 60px;
  max-width: 900px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.article-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 3px 10px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 1px;
}
.article-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.article-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 60px;
}
.article-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(10,45,86,0.1);
}
.article-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.article-text h3 {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 16px;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 48px;
  transition: gap 0.2s;
}
.article-back:hover { gap: 14px; }

/* ── ARTICLE FEATURED IMAGE ── */
.article-featured-img {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  margin: 32px 0 40px;
  aspect-ratio: 16 / 7;
}
.article-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── ARTICLE IMAGE GALLERY ── */
.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 40px 0 48px;
}
.article-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.article-gallery img:hover { transform: scale(1.03); }
@media (max-width: 600px) {
  .article-gallery { grid-template-columns: 1fr 1fr; }
  .article-featured-img { aspect-ratio: 16 / 9; }
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(10,45,86,0.07);
}
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
}
.contact-info-value a {
  color: var(--navy);
  transition: color 0.2s;
}
.contact-info-value a:hover { color: var(--red); }
.map-wrap {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10,45,86,0.1);
  margin-top: 60px;
}
.map-wrap iframe {
  width: 100%;
  height: 440px;
  border: none;
  display: block;
}

/* ── LIVE POPUP ── */
.live-popup-modal {
  position: relative;
  width: 90vw;
  max-width: 960px;
  background: var(--navy-dark);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.65);
  border-top: 3px solid var(--gold);
}
.live-popup-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.live-indicator {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e03030;
  flex-shrink: 0;
}
.live-indicator-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #e03030;
  animation: liveBlink 1.4s ease-in-out infinite;
}
.live-popup-title {
  font-family: 'HelveticaGeo', 'FiraGO', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.live-embed-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.live-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.live-offline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #080f1c;
}
.live-offline-icon {
  width: 64px; height: 64px;
  color: rgba(255,255,255,0.15);
}
.live-offline-text {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── CTA BANNER (reusable) ── */
.cta-section {
  background: var(--navy);
  padding: 90px 60px;
  text-align: center;
  border-top: 1px solid rgba(201,140,58,0.2);
}
.cta-section .section-title { color: var(--white); margin-bottom: 16px; }
.cta-section .section-title strong { color: var(--gold); }
.cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.strongColorBeige strong{
  color: var(--beige);
}

.strongGold strong{
  color:var(--gold);
}

.tooltip_4 {
	display:none;
	position:absolute;  
	z-index: 9999999;
}

.FloorToolTip {
  width: 140px;
  height: 60px;
  text-align: center;
  line-height:19px;
}

.tooltipBg-green{
  background-color: rgba(82, 196, 154, 0.9);
}

.tooltipBg-orange{
  background-color: rgba(224, 168, 78, 0.9);
}

.tooltipBg-dark{
  background-color: rgba(255, 0, 0, 0.7);
}

.FloorToolTip span {
  font-size: 17px;
  font-family:'HelveticaGeo','FiraGO',sans-serif;
  color: #fff;
  display: inline-block;
  width: 100%;
  margin-top: 7px;
}
.FloorToolTip span i {
font-size:10px;
font-style:normal;
position:relative;
top:-5px;
}
.FloorToolTip span .PlanIcon {
  width: 60px;
  height: 60px;
  float: right;
  position: absolute;
  left: 110%;
  top: 0
}

.FloorToolTip label {
  font-family:'HelveticaGeo','FiraGO',sans-serif;
  font-size: 15px;
  color: #fff;
  font-weight: 400;
  display:block;
}

.FloorToolTip:after {
  content: '';
  position: absolute;
  top: 100%;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  /* border-top: 8px solid #215AA5 */
}

.tooltipBg-green:after{
  border-top: 8px solid rgba(82, 196, 154, 0.9);
}

.tooltipBg-orange:after{
  border-top: 8px solid rgba(224, 168, 78, 0.9);
}

.tooltipBg-dark:after{
  border-top: 8px solid rgba(255, 0, 0, 0.7);
}

.notification{
  margin:0;
  padding: 0;
  width: 100%;
}

.notification p {
  margin: 15px 0;
  padding: 0;
  width: 100%;
  color: var(--red);
  display: none;
}
.notification p:not(:empty) {
  display: block;
}

/* ============================================================
   INTERNAL PAGES — responsive
   ============================================================ */
@media (max-width: 1024px) {
  .page-hero { padding: 180px 32px 72px; }
  .page-section { padding: 80px 32px; }
  .content-cols { gap: 48px; }
  .article-body { padding: 60px 32px; }
  .article-hero-content { padding: 36px 32px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { gap: 20px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 150px 20px 60px; }
  .page-section { padding: 60px 20px; }
  .content-cols,
  .content-cols--reverse { grid-template-columns: 1fr; direction: ltr; }
  .content-col-img { aspect-ratio: 16 / 9; }
  .cards-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .invest-highlights { grid-template-columns: 1fr; }
  .invest-highlight { border-right: none; border-bottom: 1px solid rgba(10,45,86,0.12); }
  .invest-highlight:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .article-hero { height: 320px; }
  .article-hero-content { padding: 24px 20px; }
  .article-body { padding: 48px 20px; }
  .article-lead { font-size: 16px; }
  .live-popup-header { padding: 18px 20px; }
  .live-popup-title { font-size: 13px; }
  .cta-section { padding: 60px 20px; }
}
@media (max-width: 480px) {
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .invest-num { font-size: 38px; }
}

