/* =============================================
   THE GLOBAL CITY – LANDING PAGE STYLESHEET
   ============================================= */

/* --- CSS Variables --- */
:root {
  --gold: #c8a85a;
  --gold-light: #e0c07a;
  --gold-dark: #9e7d3a;
  --dark: #0e1117;
  --dark-2: #1a1f2e;
  --dark-3: #252a3a;
  --text: #2c2c2c;
  --text-light: #666;
  --text-muted: #999;
  --bg: #ffffff;
  --bg-light: #f8f7f4;
  --border: #e5e0d5;
  --white: #ffffff;
  --red: #c0392b;
  --green: #27ae60;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --container: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Sections --- */
.section { padding: 80px 0; }
.bg-light { background: var(--bg-light); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(200,168,90,0.4);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 6px 25px rgba(200,168,90,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-full { width: 100%; display: block; }

/* --- Section Headers --- */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-desc { color: var(--text-light); font-size: 1.0rem; line-height: 1.8; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,17,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,90,0.2);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(14,17,23,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-main {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.main-nav a:hover { color: var(--gold); }
.main-nav a.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 8px 20px;
}
.main-nav a.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero:hover .hero-bg img { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,17,23,0.5) 0%,
    rgba(14,17,23,0.4) 40%,
    rgba(14,17,23,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}
.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  letter-spacing: 4px;
  line-height: 1.05;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 44px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 60px;
  padding: 16px 40px;
  display: inline-flex;
}
.stat-item { text-align: center; padding: 0 32px; }
.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  margin: 6px auto 0;
  animation: bounceDown 1.5s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* =============================================
   PARTNERS BAR
   ============================================= */
.partners-bar {
  background: var(--dark-2);
  padding: 24px 0;
  border-top: 1px solid rgba(200,168,90,0.3);
  border-bottom: 1px solid rgba(200,168,90,0.3);
}
.partners-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 16px;
}
.partners-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.partner-item {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
}
.partner-item:hover { color: var(--gold-light); }

/* =============================================
   OVERVIEW
   ============================================= */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.overview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.overview-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.overview-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.overview-card:hover::before { transform: scaleX(1); }
.ov-icon { font-size: 2.5rem; margin-bottom: 16px; }
.overview-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}
.overview-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* =============================================
   PROJECT INFO TABLE
   ============================================= */
.info-table-wrap { overflow-x: auto; }
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.info-table th, .info-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.info-table th {
  background: var(--dark-2);
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 18%;
}
.info-table td { background: var(--white); color: var(--text); }
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: none; }

/* =============================================
   LOCATION
   ============================================= */
.location-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.location-map {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.location-map img { width: 100%; height: 400px; object-fit: cover; }
.map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(200,168,90,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(200,168,90,0.5); }
  50% { box-shadow: 0 4px 30px rgba(200,168,90,0.8), 0 0 0 10px rgba(200,168,90,0.1); }
}
.location-list h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.connect-list { display: flex; flex-direction: column; gap: 12px; }
.connect-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  transition: var(--transition);
}
.connect-list li:hover { background: #f0ede5; }
.connect-icon { font-size: 1.2rem; flex-shrink: 0; }
.connect-list strong { color: var(--gold-dark); }

/* =============================================
   GREEN HIGHLIGHT
   ============================================= */
.green-highlight {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.green-bg {
  position: absolute;
  inset: 0;
}
.green-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.green-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,30,20,0.65);
}
.green-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.green-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.green-number {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.green-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

/* =============================================
   AMENITIES
   ============================================= */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.amenity-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.amenity-icon { font-size: 2rem; margin-bottom: 12px; }
.amenity-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.amenity-card p { color: var(--text-light); font-size: 0.82rem; line-height: 1.6; }

/* =============================================
   PRODUCTS
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card.featured { grid-column: span 1; }
.product-img { position: relative; overflow: hidden; }
.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}
.product-info { padding: 24px; }
.product-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.product-specs span {
  font-size: 0.82rem;
  color: var(--text-light);
}
.product-info p {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}

/* Floor plans */
.floorplan-section { border-top: 1px solid var(--border); padding-top: 48px; }
.floorplan-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 24px;
  text-align: center;
}
.floorplan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fp-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.fp-card:hover { box-shadow: var(--shadow); }
.fp-img img { width: 100%; height: 160px; object-fit: cover; }
.fp-label {
  padding: 10px 12px;
  font-size: 0.78rem;
  color: var(--text-light);
  background: var(--bg-light);
  text-align: center;
}

/* =============================================
   PROGRESS / TIMELINE
   ============================================= */
.progress-timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto 60px;
}
.progress-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(200,168,90,0.1));
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}
.tl-marker {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 3px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.timeline-item.done .tl-marker {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.timeline-item.active .tl-marker {
  background: var(--dark-2);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,168,90,0.2);
}
.tl-content {
  padding-top: 10px;
  flex: 1;
}
.tl-content h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.tl-content p {
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.tl-content small { color: var(--text-light); font-size: 0.82rem; }

.progress-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.pg-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.pg-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.pg-item:hover img { transform: scale(1.08); }
.pg-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
}
.pg-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.pg-badge--gold { background: var(--gold); color: var(--dark); }
.pg-overlay p { font-size: 0.85rem; font-weight: 500; }

/* =============================================
   NEWS
   ============================================= */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.news-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); border: 1px solid var(--border); }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card--big .news-img img { width: 100%; height: 260px; object-fit: cover; }
.news-card--big .news-body { padding: 24px; }
.news-cat {
  display: inline-block;
  background: rgba(200,168,90,0.15);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.news-card--big h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}
.news-card--big h3 a:hover { color: var(--gold-dark); }
.news-card--big p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; margin-bottom: 12px; }
.news-date { font-size: 0.78rem; color: var(--text-muted); }
.news-side { display: flex; flex-direction: column; gap: 16px; }
.news-card--small {
  display: flex;
  align-items: center;
  gap: 0;
}
.news-thumb { flex-shrink: 0; }
.news-thumb img { width: 100px; height: 80px; object-fit: cover; }
.news-card--small .news-body { padding: 12px 14px; }
.news-card--small h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.4;
}
.news-card--small h4 a:hover { color: var(--gold-dark); }

/* =============================================
   CONTACT FORM
   ============================================= */
.contact { background: var(--dark-2); }
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,168,90,0.2);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
}
.contact-info { color: var(--white); }
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info > p { color: rgba(255,255,255,0.7); margin-bottom: 28px; line-height: 1.8; font-size: 0.95rem; }
.contact-benefits { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.contact-benefits li { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.contact-hotline { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.contact-hotline > span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.hotline-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-light);
  font-weight: 700;
}
.hotline-num:hover { color: var(--gold); }

/* Form */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,168,90,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input[type="checkbox"] { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; }
.form-check label { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
.form-check a { color: var(--gold-dark); text-decoration: underline; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px;
  background: rgba(39,174,96,0.1);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-size: 0.88rem;
  text-align: center;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--dark); }
.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li, .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold); }

/* =============================================
   FLOATING CTA & BACK TO TOP
   ============================================= */
.float-cta {
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: var(--transition);
  cursor: pointer;
}
.float-call {
  background: #25D366;
  color: var(--white);
  animation: pulse-green 2s infinite;
}
.float-register { background: var(--gold); color: var(--dark); }
.float-btn:hover { transform: scale(1.1); }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}
.back-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 999;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-3);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.1);
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover { background: var(--gold); }

/* =============================================
   ANIMATIONS
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE – TABLET
   ============================================= */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .floorplan-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-box { gap: 40px; padding: 40px 32px; }
}

/* =============================================
   RESPONSIVE – MOBILE
   ============================================= */
@media (max-width: 768px) {
  .section { padding: 56px 0; }

  /* Header */
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(14,17,23,0.98);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-110%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(200,168,90,0.2);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a { padding: 12px 16px; width: 100%; }

  /* Hero */
  .hero-stats {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 20px 32px;
    gap: 16px;
  }
  .stat-divider { width: 60px; height: 1px; }
  .hero-actions { flex-direction: column; align-items: center; }

  /* Overview */
  .overview-grid { grid-template-columns: 1fr; }
  .overview-grid--bottom { grid-template-columns: 1fr; }

  /* Products */
  .products-grid { grid-template-columns: 1fr; }

  /* Location */
  .location-layout { grid-template-columns: 1fr; }

  /* Progress gallery */
  .progress-gallery { grid-template-columns: 1fr; }
  .progress-timeline::before { left: 22px; }

  /* News */
  .news-layout { grid-template-columns: 1fr; }

  /* Contact */
  .contact-box {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 32px;
  }
  .form-row { grid-template-columns: 1fr; }

  /* Partners */
  .partners-list { gap: 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  /* Amenities */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  /* Floorplans */
  .floorplan-grid { grid-template-columns: repeat(2, 1fr); }

  /* Info table */
  .info-table { font-size: 0.82rem; }
  .info-table th, .info-table td { padding: 10px 12px; }
  .info-table tr { display: block; }
  .info-table th, .info-table td { display: block; width: 100%; }
  .info-table th { padding-bottom: 4px; padding-top: 14px; }
  .info-table td { padding-top: 4px; border-bottom: 1px solid var(--border); }

  /* Hotline */
  .hotline-num { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: 2px; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .floorplan-grid { grid-template-columns: 1fr 1fr; }
  .green-number { font-size: 5rem; }
}
