@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@300;400;500;600;700;900&display=swap');

@font-face {
  font-family: 'BPG ExtraSquare Mtavruli';
  src: url('bpg_extrasquare_mtavruli_2009.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

span { font-family: 'BPG ExtraSquare Mtavruli', sans-serif; }

:root {
  --green-dark: #263230;
  --green-primary: #3C4F46;
  --green-card: #344840;
  --orange: #E15242;
  --orange-hover: #c93c2d;
  --white: #FFFFFF;
  --off-white: #F4F1EC;
  --gray: #9AADA5;
  --gray-light: #D0DAD5;
  --font: 'FiraGo', 'Noto Sans Georgian', sans-serif;
  --font-headline: 'GL Tatishvili Metal', 'BPG ExtraSquare Mtavruli', 'Noto Sans Georgian', sans-serif;
  --radius: 4px;
  --transition: 0.3s ease;
}

html[lang="en"] {
  --font: 'FiraGo', 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── UTILITIES ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--about { padding: 0; }
.section--dark { background: var(--green-dark); }
.section--card { background: var(--green-card); }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  border: 1px solid rgba(225,82,66,0.5);
  padding: 2px 12px;
  border-radius: 3px;
}

.section-title {
  font-family: var(--font-headline);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.section-title--center { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-hover); }
.btn--outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--orange-outline { border-color: var(--orange); color: var(--orange); }
.btn--orange-outline:hover { background: var(--orange); color: var(--white); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: var(--transition);
}

.nav.scrolled { background: rgba(38, 50, 48, 0.97); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 80px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--transition);
}

.nav__links a:hover { color: var(--white); }

.nav__cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600 !important;
}

.nav__cta:hover { background: var(--orange-hover) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.nav__mobile {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 116px; left: 0; right: 0;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 99;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav__mobile.open { max-height: 420px; }
.nav__mobile a {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.nav__mobile a:hover { color: var(--orange); background: rgba(255,255,255,0.03); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a2820 0%, #2e4238 40%, #3c5248 70%, #4a6055 100%);
  background-size: cover;
  background-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,40,32,0.92) 50%, rgba(26,40,32,0.5) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero__label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

.hero__title {
  font-family: var(--font-headline);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 600px;
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-sub {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  line-height: 1;
  margin-bottom: 2px;
}

.hero__stat-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

/* ─── ABOUT ─── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 600px;
}

.about__content {
  display: flex;
  align-items: center;
}

.about__content .container {
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about__text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(225,82,66,0.12);
  border: 1px solid rgba(225,82,66,0.3);
  border-radius: var(--radius);
  padding: 14px 22px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
}

.about__badge-logo {
  height: 20px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.about__badge {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.about__image {
  position: relative;
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* ─── ADVANTAGES ─── */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
}

.advantage-item {
  background: var(--green-dark);
  padding: 32px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: 0.5s !important;
}

.advantage-item:hover { background: #3d5549; }

.advantage-item__line {
  width: 3px;
  min-height: 40px;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.advantage-item__text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* ─── FRAMEWORK ─── */
.framework-section {
  position: relative;
  overflow: hidden;
}

.framework-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.13;
  z-index: 0;
}

.framework__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 80px;
  align-items: start;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.framework__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.framework__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
}

.framework__item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ─── APARTMENTS ─── */
/* ─── FILTER GROUPS ─── */
.apt__filter-groups {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 40px 0 32px;
  align-items: center;
}

.apt__filter-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.apt__filter-group-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

.apt__filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.apt__filter-btn {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: var(--font);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease,
              max-width 0.3s ease, opacity 0.3s ease, padding 0.3s ease,
              margin 0.3s ease, border-width 0.3s ease;
  max-width: 200px;
  overflow: hidden;
  white-space: nowrap;
}

.apt__filter-btn:hover,
.apt__filter-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.apt__filter-btn--unavailable {
  max-width: 0;
  opacity: 0;
  padding-left: 0;
  padding-right: 0;
  border-width: 0;
  pointer-events: none;
  cursor: default;
}

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

.apt-card {
  background: var(--green-card);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
}

.apt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.apt-card.hidden { display: none; }
.apt-card.apt-paged-hidden { display: none; }

.apt__show-more-wrap {
  display: none;
  justify-content: center;
  margin-top: 32px;
}

.apt__show-more-btn {
  padding: 14px 40px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-family: var(--font);
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.apt__show-more-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.apt-card__header {
  padding: 24px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.apt-card__num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--orange);
  text-transform: uppercase;
  border: 1px solid rgba(225,82,66,0.5);
  padding: 2px 12px;
  border-radius: 3px;
  box-shadow: 0px 0px 5px 0px #E15242;
}

.apt-card__floor {
  font-size: 11px;
  color: rgb(219 219 219);
  background: rgb(255 105 33 / 31%);
  padding: 4px 10px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.apt-card__floor::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23dbdbdb'%3E%3Cpath d='M3 21v-3h3v-3h3v-3h3v-3h3V6h3v15H3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.apt-card__area {
  padding: 8px 24px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.apt-card__area span { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.5); }

.apt-card__rooms {
  padding: 6px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card-room-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

.card-room-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.05); }

.card-room-item svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  flex-shrink: 0;
  opacity: 0.85;
}

.apt-card__footer { margin-top: auto; }

.apt-card__divider {
  margin: 20px 24px;
  border: none;
  border-top: 1px dashed rgba(255,255,255,0.15);
}

.apt-card__price-row {
  padding: 0 24px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apt-card__price-label { font-size: 13px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }

.apt-card__price-m2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--orange);
}

.apt-card__total { font-size: 13px; color: rgba(255,255,255,0.5); text-align: right; }
.apt-card__total strong { display: block; font-size: 15px; color: rgba(255,255,255,0.8); font-weight: 600; }

.apt-card__cta {
  display: block;
  margin: 0 24px 24px;
  width: calc(100% - 48px);
  padding: 12px;
  text-align: center;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  cursor: pointer;
  transition: var(--transition);
}

.apt-card__cta:hover { background: var(--orange-hover); }

/* ─── DELIVERY ─── */
.delivery {
  background: var(--orange);
  padding: 80px 0;
}

.delivery__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.delivery__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.delivery__title {
  font-family: var(--font-headline);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
}

.delivery__text { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.85); line-height: 1.7; }

/* ─── LOCATION ─── */
.location__map {
  width: 100%;
  height: 440px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid rgba(255,255,255,0.1);
}

.location__map iframe { width: 100%; height: 100%; border: none; }

.location__info {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.location__detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.location__detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(225,82,66,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.location__detail-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.location__detail-value { font-size: 15px; font-weight: 500; }

/* ─── LOCATION SCORE BADGE ─── */
.loc-score-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(225,82,66,0.12);
  border: 2px solid rgba(225,82,66,0.45);
  gap: 4px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.loc-score-badge:hover {
  background: rgba(225,82,66,0.22);
  border-color: var(--orange);
}
.loc-score-badge__icon { font-size: 22px; line-height: 1; }
.loc-score-badge__text {
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.2;
  padding: 0 6px;
}

/* ─── MAP SCORE OVERLAY ─── */
.location__map { position: relative; }

.map-score-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  pointer-events: none;
}
.map-score-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 4px 16px rgba(225,82,66,0.5);
  border: 3px solid rgba(255,255,255,0.9);
}
.map-score-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}
.map-score-lbl {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

/* ─── CONTACT ─── */
.contact__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.contact__info-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  background: var(--green-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s ease;
}

.contact__info-item:hover {
  border-color: rgba(225,82,66,0.4);
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(225,82,66,0.15);
  border: 1px solid rgba(225,82,66,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact__info-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 6px; letter-spacing: 1px; text-transform: uppercase; }
.contact__info-value { font-size: 17px; font-weight: 600; }
.contact__info-sub { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 4px; }

/* Contact info banner */
.contact__info-banner {
  
  border-radius: 8px;
  padding: 24px 28px;
  margin-top: auto;
  flex-shrink: 0;
border-width: 1px;
border-style: solid;
    border-color: #E15242;
}

.contact__info-banner-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.contact__info-banner-date {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.contact__info-banner-note {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px 32px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__logo img { height: 105px; }

.footer__links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__site { color: rgba(255,255,255,0.5); }
.footer__site a { color: var(--orange); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .apt__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 0; min-height: unset; }
  .about__content .container { padding-top: 40px; padding-bottom: 40px; max-width: 100%; margin: 0 auto; }
  .framework__grid { grid-template-columns: 1fr; gap: 28px; margin-top: 28px; }
  .framework__visual { aspect-ratio: 16/9; }
  .contact__cards { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .delivery__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { height: 72px; }
  .nav__logo img { height: 58px; }
  .nav__mobile { top: 72px; }
  .hero__content { padding: 88px 20px 60px; }
  .hero__title { font-size: clamp(32px, 9vw, 48px); word-break: break-word; overflow-wrap: break-word; }
  .hero__subtitle { font-size: 15px; margin-bottom: 28px; }
  .hero__stats { gap: 10px; flex-wrap: nowrap; justify-content: space-between; }
  .hero__stat { min-width: 0; flex-shrink: 1; }
  .hero__stat-number { font-size: 22px; }
  .hero__stat-label { font-size: 9px; white-space: nowrap; }
  .hero__stat-sub { font-size: 10px; }
  .advantages__grid { grid-template-columns: 1fr; }
  .apt__grid { grid-template-columns: 1fr; gap: 12px; }
  .about__badge { font-size: 12px; padding: 10px 14px; gap: 10px; flex-wrap: wrap; white-space: normal; }
  .about__content .container { padding-top: 28px; padding-bottom: 32px; }
  .framework__grid { gap: 20px; margin-top: 20px; }
  .location__info { flex-direction: column; }
  .footer__top { flex-direction: column; }
  .footer__logo img { height: 60px; }
  .apt__filter-groups { gap: 16px; }
  .apt__filter-group { gap: 6px; }
  .delivery__inner { gap: 28px; }
  .delivery__title { font-size: clamp(28px, 8vw, 44px); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; gap: 10px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .apt__filter-btn { padding: 8px 14px; font-size: 12px; }
  .contact__cards { grid-template-columns: 1fr; gap: 12px; }
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-divider {
  color: rgba(255,255,255,0.2);
  font-size: 12px;
  padding: 0 2px;
  user-select: none;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: rgba(255,255,255,0.45);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 5px;
}

.lang-flag {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
  flex-shrink: 0;
}

.lang-btn.active {
  color: var(--orange);
  border-color: rgba(225,82,66,0.35);
  background: rgba(225,82,66,0.08);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
  border-color: rgba(255,255,255,0.15);
}

/* ─── ADVANTAGES SECTION BACKGROUND ─── */
.advantages-section {
  position: relative;
  overflow: hidden;
}

.advantages-section__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

/* ─── APT CARD THUMBNAIL ─── */
.apt-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  background: #958e86;
}

.apt-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.apt-card:hover .apt-card__thumb img {
  transform: scale(1.04);
}

.apt-card__sold-badge {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 67%);
  gap: 6px;
  pointer-events: none;
}
.apt-card__sold-badge .sold-ka {
  border: 1px solid #ff0000c2;
  padding: 5px;
  color: #ff0000;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}
.apt-card__sold-badge .sold-en {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.apt-card--sold .apt-card__thumb { cursor: default; }
.apt-card--sold:hover .apt-card__thumb img { transform: none; }

.apt-card__thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,40,32,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.apt-card:hover .apt-card__thumb-overlay {
  opacity: 1;
}

.apt-card__thumb-overlay span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 2px;
}

.apt-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ─── APARTMENT MODAL ─── */
.apt-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.apt-modal.open {
  pointer-events: all;
  opacity: 1;
}

.apt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 25, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.apt-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--green-dark);
  border-radius: 12px;
  width: 100%;
  max-width: 1280px;
  height: min(820px, 92vh);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 360px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: scale(0.88) translateY(24px);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  opacity: 0;
}

.apt-modal.open .apt-modal__panel {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.apt-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.apt-modal__close:hover {
  background: rgba(225,82,66,0.3);
  border-color: var(--orange);
  transform: scale(1.1);
}

/* Gallery */
.apt-modal__gallery {
  display: flex;
  flex-direction: column;
  background: #1a2820;
  overflow: hidden;
  height: 100%;
}

.apt-modal__main-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.apt-modal__main-wrap.plan-mode {
  padding: 28px;
  box-sizing: border-box;
}

.apt-modal__main-wrap.floor-plan-mode {
  padding: 0;
}

.apt-modal__main-wrap.floor-plan-mode .apt-modal__main-img {
  object-fit: contain;
}

/* ── FLOOR PLAN FULLSCREEN BUTTON ── */
.fsp-btn {
  display: none;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  color: #fff;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.fsp-btn:hover { background: rgba(0,0,0,0.8); }
.apt-modal__main-wrap.floor-plan-mode .fsp-btn { display: flex; }

/* ── FULLSCREEN OVERLAY ── */
.fsp-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.96);
  flex-direction: column;
}
.fsp-overlay.open { display: flex; }

.fsp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: rgba(0,0,0,0.5);
  flex-shrink: 0;
  gap: 12px;
}

.fsp-controls { display: flex; gap: 8px; align-items: center; }

.fsp-ctrl-btn, .fsp-close {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.fsp-ctrl-btn:hover, .fsp-close:hover { background: rgba(255,255,255,0.22); }

.fsp-zoom-label {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 600;
  min-width: 42px;
  text-align: center;
}

.fsp-img-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  position: relative;
}
.fsp-img-wrap.dragging { cursor: grabbing; }

.fsp-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.15s ease;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Hide Visual II thumb */
.apt-modal__thumb[data-idx="1"] { display: none; }

.apt-modal__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: white;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.apt-modal__main-img.switching {
  opacity: 0;
  transform: scale(0.97);
}

.apt-modal__thumbs {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.apt-modal__thumb {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 10px 8px;
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  transition: background 0.2s ease;
  color: rgba(255,255,255,0.5);
  font-family: var(--font);
  font-size: 10px;
  letter-spacing: 1px;
}

.apt-modal__thumb:last-child { border-right: none; }

.apt-modal__thumb:hover { background: rgba(255,255,255,0.04); }

.apt-modal__thumb.active {
  background: rgba(225,82,66,0.1);
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}

.apt-modal__thumb img {
  width: 60px;
  height: 40px;
  object-fit: cover;
  border-radius: 3px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.apt-modal__thumb.active img,
.apt-modal__thumb:hover img { opacity: 1; }

/* Info panel */
.apt-modal__info {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.apt-modal__floor-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.apt-modal__title {
  font-family: var(--font-headline);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.apt-modal__area {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.apt-modal__area span {
  font-size: 18px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}

.apt-modal__sep {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

.apt-modal__rooms {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.modal-room-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}

.modal-room-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.06); }

.modal-room-item svg {
  color: var(--orange);
  flex-shrink: 0;
  opacity: 0.9;
}

.apt-modal__price-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.apt-modal__price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.apt-modal__price-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.apt-modal__price-val {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
}

.apt-modal__price-total {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
}

.apt-modal__cta {
  margin-top: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal responsive */
@media (max-width: 768px) {
  .apt-modal { padding: 12px; }

  .apt-modal__panel {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .apt-modal__gallery {
    height: 62vw;
    min-height: 220px;
    max-height: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
  }

  .apt-modal__main-wrap {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    position: relative;
  }

  .apt-modal__main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .apt-modal__info {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 20px;
  }

  .apt-modal__area { font-size: 32px; }
}

/* ── FLOOR MAP ── */
.section--floormap { padding: 80px 0; }

.floormap__wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.floormap__wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 58% 72% at 46% 44%, transparent 28%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
  z-index: 1;
}

.floormap__svg { z-index: 2; }
.floormap__tooltip { z-index: 3; }

.floormap__img {
  display: block;
  width: 100%;
  height: auto;
}

.floormap__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.floormap__hint {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.floormap__hint::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 9l4-4 4 4'/%3E%3Cpath d='M5 15l4 4 4-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.fm-floor { cursor: pointer; }

.fm-poly {
  fill: rgba(225, 82, 66, 0.04);
  stroke: rgba(225, 82, 66, 0.35);
  stroke-width: 1.5;
  cursor: pointer;
  pointer-events: all;
  transition: fill 0.3s ease, stroke 0.3s ease, stroke-width 0.3s ease;
  vector-effect: non-scaling-stroke;
}

.fm-floor:hover .fm-poly {
  fill: rgba(225, 82, 66, 0.18);
  stroke: rgb(225, 82, 66);
  stroke-width: 2.5;
}

/* Left-side indicators */
.fm-tick {
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 1.5;
  stroke-dasharray: 8 6;
  transition: stroke 0.4s ease, stroke-dasharray 0.4s ease, stroke-width 0.4s ease;
}

@keyframes fm-dot-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.7); }
}

.fm-dot {
  fill: rgba(255, 255, 255, 0.6);
  transform-origin: center;
  transform-box: fill-box;
  animation: fm-dot-pulse 2.4s ease-in-out infinite;
  transition: fill 0.4s ease;
}

.fm-num {
  fill: rgba(255, 255, 255, 0.7);
  font-size: 110px;
  font-weight: 700;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  letter-spacing: 6px;
  dominant-baseline: middle;
  text-anchor: end;
  transition: fill 0.4s ease;
}

.fm-floor:hover .fm-tick {
  stroke: rgba(255, 255, 255, 0.95);
  stroke-dasharray: none;
  stroke-width: 2;
}

.fm-floor:hover .fm-dot {
  fill: var(--orange);
  animation: none;
  transform: scale(1.5);
}

.fm-floor:hover .fm-num {
  fill: #ffffff;
}

/* Bottom tooltip — glassmorphism */
.floormap__tooltip {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 14, 11, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  padding: 9px 24px;
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floormap__tooltip.show { opacity: 1; }

/* ── FLOOR PLAN MODAL ── */
.fpm-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.fpm-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.fpm-modal {
  background: var(--green-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  width: 100%;
  max-width: 960px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.25s ease;
  overflow: hidden;
}

.fpm-backdrop.open .fpm-modal {
  transform: translateY(0) scale(1);
}

.fpm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.fpm-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
}

.fpm-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.18s;
}

.fpm-close:hover { color: #fff; }

.fpm-body {
  overflow-y: auto;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

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

.fpm-footer {
  padding: 16px 24px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

/* ── FLOOR MAP — RESPONSIVE ── */
@media (max-width: 1024px) {
  .section--floormap { padding: 60px 0; }
}

@media (max-width: 768px) {
  .section--floormap { padding: 50px 0; }
  .floormap__wrap { margin-top: 20px; border-radius: 8px; }

  /* Scale SVG indicators up so they stay readable */
  .fm-num  { font-size: 200px; }
  .fm-tick { stroke-width: 4; stroke-dasharray: 18 12; }
  .fm-dot  { r: 20px; }

  .fm-floor:hover .fm-tick,
  .fm-floor:active .fm-tick { stroke-width: 5; stroke-dasharray: none; }

  .floormap__tooltip {
    font-size: 10px;
    padding: 7px 16px;
    letter-spacing: 2px;
    bottom: 12px;
  }

  /* Modal — slide up from bottom on mobile */
  .fpm-backdrop {
    padding: 0;
    align-items: flex-end;
  }
  .fpm-modal {
    border-radius: 16px 16px 0 0;
    max-height: 88vh;
    max-width: 100%;
  }
  .fpm-header { padding: 14px 18px; }
  .fpm-footer { padding: 12px 18px; }
}

@media (max-width: 480px) {
  .section--floormap { padding: 36px 0; }
  .floormap__wrap { margin-top: 14px; border-radius: 6px; }

  .fm-num  { font-size: 200px; }
  .fm-tick { stroke-width: 6; stroke-dasharray: 24 16; }
  .fm-dot  { r: 20px; }

  .floormap__tooltip { display: none; }

  .fpm-modal { max-height: 92vh; }
}

/* Stagger dot pulse per floor so they ripple bottom → top */
.fm-floor[data-floor="1"] .fm-dot { animation-delay: 0s; }
.fm-floor[data-floor="2"] .fm-dot { animation-delay: 0.48s; }
.fm-floor[data-floor="3"] .fm-dot { animation-delay: 0.96s; }
.fm-floor[data-floor="4"] .fm-dot { animation-delay: 1.44s; }
.fm-floor[data-floor="5"] .fm-dot { animation-delay: 1.92s; }

/* Touch active state (mirrors hover for touch devices) */
.fm-floor:active .fm-poly {
  fill: rgba(225, 82, 66, 0.18);
  stroke: rgb(225, 82, 66);
  stroke-width: 2.5;
}
.fm-floor:active .fm-dot { fill: var(--orange); animation: none; }

/* ─── BRAND IDENTITY BLOCKS ─── */
.brand-bar {
  display: flex;
  height: 10px;
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-bar__b { flex: 1; }
.brand-bar__b--1 { background: var(--green-card); }
.brand-bar__b--2 { background: var(--orange); }
.brand-bar__b--3 { background: rgba(255,255,255,0.07); }
.brand-bar__b--4 { background: var(--green-dark); }

.brand-blocks {
  position: absolute;
  bottom: 56px;
  right: 24px;
  z-index: 1;
  opacity: 0.18;
  pointer-events: none;
}
.brand-blocks__grid {
  display: grid;
  grid-template-columns: repeat(4, 22px);
  grid-template-rows: repeat(3, 14px);
  gap: 4px;
}
.bb { display: block; border-radius: 2px; }
.bb--o { background: var(--orange); }
.bb--d { background: rgba(255,255,255,0.5); }
.bb--m { background: rgba(255,255,255,0.2); }

@media (max-width: 640px) {
  .brand-blocks { display: none; }
}
.fm-floor:active .fm-num { fill: #ffffff; }
