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

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

:root {
  --green-dark: #263230;
  --green-primary: #3C4F46;
  --green-card: #344840;
  --orange: #E8533A;
  --orange-hover: #d4452d;
  --white: #FFFFFF;
  --off-white: #F4F1EC;
  --gray: #9AADA5;
  --gray-light: #D0DAD5;
  --font: 'Noto Sans Georgian', sans-serif;
  --radius: 4px;
  --transition: 0.3s ease;
}

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--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;
}

.section-title {
  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;
  padding: 0 24px;
  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;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.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: none;
  flex-direction: column;
  gap: 0;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 99;
}

.nav__mobile.open { display: flex; }
.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%);
}

/* If actual image is placed: */
.hero__bg.has-image {
  background-image: url('img/hero.jpg');
  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-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;
}

.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;
  gap: 80px;
  align-items: center;
}

.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: 10px;
  background: rgba(232,83,58,0.12);
  border: 1px solid rgba(232,83,58,0.3);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange);
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--green-card);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about__image-placeholder::after {
  content: 'Replace with building image';
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}

/* ─── 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: var(--transition);
}

.advantage-item:hover { background: #2e3e3a; }

.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__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.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;
}

.framework__visual {
  background: var(--green-card);
  border-radius: 8px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}

.framework__visual::after { content: 'Replace with floor plan image'; }

/* ─── APARTMENTS ─── */
.apt__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 40px 0 32px;
}

.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: var(--transition);
}

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

.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: var(--transition);
}

.apt-card:hover {
  border-color: rgba(232,83,58,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

.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;
}

.apt-card__floor {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
  padding: 4px 10px;
  border-radius: 100px;
}

.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;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

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

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

.apt-card__price-label { font-size: 11px; 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;
  padding: 12px;
  text-align: center;
  border: 1px solid rgba(232,83,58,0.4);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  transition: var(--transition);
}

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

/* ─── 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-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(232,83,58,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; }

/* ─── CONTACT ─── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 48px;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--green-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: #3d5248;
}

.form-group select option { background: var(--green-card); }

.contact__info { display: flex; flex-direction: column; gap: 32px; }

.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232,83,58,0.15);
  border: 1px solid rgba(232,83,58,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; }
.contact__info-value { font-size: 16px; font-weight: 500; }
.contact__info-sub { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ─── 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: 56px; }

.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: 40px; }
  .framework__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .delivery__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .advantages__grid { grid-template-columns: 1fr; }
  .apt__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
  .location__info { flex-direction: column; }
  .footer__top { flex-direction: column; }
}
