/* ═══════════════════════════════════════════════════════════
   City Velmora — Main Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #1565C0;
  --blue-lt: #1E88E5;
  --blue-dk: #0D47A1;
  --gold:    #F9A825;
  --gold-lt: #FFD54F;
  --dark:    #0f1923;
  --dark2:   #1a2535;
  --gray:    #6b7280;
  --light:   #f8fafc;
  --white:   #ffffff;
  --radius:  14px;
  --shadow:  0 8px 40px rgba(0,0,0,.13);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ─── UTILITIES ─── */
.container   { max-width: 1180px; margin: auto; padding: 0 24px; }
.section     { padding: 90px 0; }
.section-sm  { padding: 60px 0; }

.tag {
  display: inline-block; background: var(--blue-lt); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.tag.gold { background: var(--gold); color: var(--dark); }

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 16px;
}
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 560px; line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px; border-radius: 50px; font-weight: 700;
  font-size: 1rem; cursor: pointer; transition: all .25s; border: none;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,101,192,.35); }
.btn-gold    { background: var(--gold); color: var(--dark); }
.btn-gold:hover    { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,168,37,.4); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: var(--blue-dk); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.96); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  padding: 14px 0; transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.10); }
.nav-inner   { display: flex; align-items: center; justify-content: space-between; }
.nav-logo    { height: 48px; }
.nav-links   { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: .9rem; font-weight: 600; color: var(--dark); transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav-cta     { padding: 11px 26px; font-size: .9rem; }
.hamburger   { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav overlay */
.mobile-nav-open .nav-links {
  display: flex !important; flex-direction: column; position: fixed;
  top: 76px; left: 0; right: 0; background: #fff;
  padding: 24px; gap: 20px; border-bottom: 1px solid #eee;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 50%, #1976D2 100%);
  position: relative; display: flex; align-items: center;
  padding: 120px 0 80px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; background: var(--gold); border-radius: 50%;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(1.3); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 20px;
}
.hero h1 span { color: var(--gold-lt); }
.hero-sub  { font-size: 1.1rem; color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 14px; }
.hero-arch { font-size: .9rem; color: rgba(255,255,255,.65); margin-bottom: 36px; font-style: italic; }
.hero-arch strong { color: var(--gold-lt); font-style: normal; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap; }
.hero-stat  { border-left: 3px solid var(--gold); padding-left: 16px; }
.hero-stat .num { font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .05em; margin-top: 4px; }

.hero-card {
  background: rgba(255,255,255,.10); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 24px;
  padding: 36px; color: #fff; position: relative; overflow: hidden;
}
.hero-card::before {
  content: 'PRE-LAUNCH'; position: absolute; top: 22px; right: -30px;
  background: var(--gold); color: var(--dark); font-size: .7rem; font-weight: 800;
  padding: 6px 44px; transform: rotate(45deg); letter-spacing: .1em;
}
.hero-card h3       { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.hero-card .price-line { font-size: .85rem; color: rgba(255,255,255,.65); margin-bottom: 22px; }

.plot-option {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px; padding: 14px 18px; margin-bottom: 10px; transition: background .2s;
}
.plot-option:hover { background: rgba(255,255,255,.15); }
.plot-sz  { font-size: 1rem; font-weight: 700; }
.plot-sub { font-size: .75rem; color: rgba(255,255,255,.6); }
.plot-amt { font-size: 1.05rem; font-weight: 800; color: var(--gold-lt); text-align: right; }
.plot-sqft{ font-size: .72rem; color: rgba(255,255,255,.5); text-align: right; }

.rate-badge {
  margin-top: 18px; background: var(--gold); color: var(--dark);
  border-radius: 10px; padding: 12px 18px; font-weight: 700; font-size: .95rem; text-align: center;
}

/* ─── TRUST BAR ─── */
.trust-bar   { background: var(--dark); padding: 22px 0; }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item  { display: flex; align-items: center; gap: 12px; color: #fff; }
.trust-icon  { font-size: 1.5rem; }
.trust-text  { font-size: .88rem; font-weight: 600; letter-spacing: .02em; }

/* ─── ABOUT ─── */
.about-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img-wrap{ position: relative; }
.about-img-wrap img { border-radius: 20px; box-shadow: var(--shadow); }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--blue); color: #fff; border-radius: 16px;
  padding: 20px 26px; text-align: center; box-shadow: 0 8px 30px rgba(21,101,192,.35);
}
.about-badge .big { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge .sm  { font-size: .78rem; opacity: .85; margin-top: 4px; }

/* Plot stats card */
.plot-stats-card {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue-lt));
  border-radius: 20px; padding: 40px 36px; color: #fff;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.plot-stats-card .bg-circle-1 {
  position: absolute; top: -30px; right: -30px;
  width: 160px; height: 160px; background: rgba(255,255,255,.07); border-radius: 50%;
}
.plot-stats-card .bg-circle-2 {
  position: absolute; bottom: -50px; left: -20px;
  width: 200px; height: 200px; background: rgba(255,255,255,.05); border-radius: 50%;
}
.plot-stats-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.65); margin-bottom: 28px;
}
.plot-stats-rows { display: flex; flex-direction: column; gap: 20px; }
.stat-row {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px; padding: 20px 24px;
}
.stat-row.grand { background: var(--gold); border-color: var(--gold); }
.stat-row-label { font-size: .8rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.stat-row.grand .stat-row-label { color: rgba(0,0,0,.6); font-weight: 700; }
.stat-row-num   { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.stat-row.grand .stat-row-num  { color: var(--dark); }
.stat-row-num span { font-size: 1rem; font-weight: 600; }
.stat-row-icon  { font-size: 2.2rem; }

.highlight-list { list-style: none; margin-top: 24px; }
.highlight-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid #f0f0f0; font-size: .97rem; color: #374151;
}
.highlight-list li:last-child { border-bottom: none; }
.check { color: var(--blue); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

/* ─── AMENITIES ─── */
.amenities { background: var(--light); }
.amenity-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px; margin-top: 50px;
}
.amenity-card {
  background: #fff; border-radius: var(--radius); padding: 30px 22px;
  text-align: center; box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s; border: 1px solid #e8edf2;
}
.amenity-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.12); }
.amenity-icon { font-size: 2.4rem; margin-bottom: 12px; }
.amenity-name { font-size: .95rem; font-weight: 700; color: var(--dark); }
.amenity-desc { font-size: .82rem; color: var(--gray); margin-top: 6px; line-height: 1.5; }

/* ─── SITE PLAN ─── */
.siteplan { background: #fff; }
.siteplan-wrap {
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid #e0e7ef; margin-top: 40px; background: var(--light);
}
.siteplan-wrap iframe { border: none; border-radius: 20px; display: block; width: 100%; }
.siteplan-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-top: 28px; }
.sp-tag {
  display: flex; align-items: center; gap: 10px;
  background: var(--light); border-radius: 10px; padding: 14px 18px; border: 1px solid #e0e7ef;
}
.sp-color { width: 18px; height: 18px; border-radius: 4px; flex-shrink: 0; }
.sp-label { font-size: .85rem; font-weight: 600; }

/* ─── PAYMENT ─── */
.payment { background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%); }
.payment h2.section-title { color: #fff; }
.payment .section-sub     { color: rgba(255,255,255,.65); }
.payment-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 50px; }
.payment-step {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden;
  transition: background .25s;
}
.payment-step:hover { background: rgba(255,255,255,.10); }
.step-num {
  font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,.06);
  position: absolute; top: 10px; right: 18px; line-height: 1;
}
.step-badge {
  display: inline-block; background: var(--gold); color: var(--dark);
  font-size: .72rem; font-weight: 800; padding: 4px 12px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 14px;
}
.payment-step h4     { font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.payment-step p      { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.payment-step .amount{ font-size: 1.5rem; font-weight: 800; color: var(--gold-lt); margin: 8px 0 4px; }

.possession-box {
  margin-top: 40px; background: rgba(249,168,37,.12); border: 1px solid rgba(249,168,37,.3);
  border-radius: var(--radius); padding: 28px 32px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.possession-box .icon { font-size: 2.4rem; }
.possession-box h4    { font-size: 1.1rem; font-weight: 700; color: var(--gold-lt); margin-bottom: 4px; }
.possession-box p     { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.6; }
.possession-box strong{ color: var(--gold-lt); }

/* ─── DRAW GIFTS ─── */
.gifts { background: var(--light); }
.gifts-header { text-align: center; margin-bottom: 50px; }
.gifts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.gift-card {
  background: #fff; border-radius: 20px; padding: 40px 28px; text-align: center;
  box-shadow: var(--shadow); border: 2px solid transparent; transition: all .3s;
  position: relative; overflow: hidden;
}
.gift-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
}
.gift-card.gold-card::before   { background: var(--gold); }
.gift-card.silver-card::before { background: #9e9e9e; }
.gift-card.bronze-card::before { background: #cd7f32; }
.gift-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,.14); }
.gift-emoji { font-size: 3rem; margin-bottom: 14px; }
.gift-name  { font-size: 1.3rem; font-weight: 800; margin-bottom: 6px; }
.gift-qty   { font-size: .85rem; color: var(--gray); margin-bottom: 16px; }
.gift-value {
  display: inline-block; background: var(--blue); color: #fff;
  font-size: 1.1rem; font-weight: 800; padding: 10px 26px; border-radius: 50px;
}
.gift-card.gold-card   .gift-value { background: var(--gold);   color: var(--dark); }
.gift-card.silver-card .gift-value { background: #757575; }
.gift-card.bronze-card .gift-value { background: #bf7340; }

.gifts-note {
  text-align: center; margin-top: 36px; font-size: .95rem; color: var(--gray);
  background: #fff; border: 1px solid #e0e7ef; border-radius: 12px; padding: 18px 28px;
}
.gifts-note strong { color: var(--dark); }

/* ─── CTA / CONTACT ─── */
.cta {
  background: linear-gradient(135deg, var(--blue-dk), var(--blue-lt));
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: rgba(255,255,255,.05); border-radius: 50%;
  top: -200px; right: -200px;
}
.cta-inner { position: relative; z-index: 1; }
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 16px;
}
.cta p {
  font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 40px;
  max-width: 560px; margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px; margin-top: 52px;
}
.contact-card {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius); padding: 24px; color: #fff; text-align: center;
}
.contact-card .icon { font-size: 1.8rem; margin-bottom: 8px; }
.contact-card h4    { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.contact-card p     { font-size: .88rem; color: rgba(255,255,255,.7); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark); color: rgba(255,255,255,.55);
  padding: 40px 0; text-align: center; font-size: .85rem; line-height: 1.8;
}
.footer-logo { height: 38px; margin: 0 auto 16px; filter: brightness(10); opacity: .7; }
footer a { color: rgba(255,255,255,.55); }
footer a:hover { color: var(--gold-lt); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-grid   { grid-template-columns: 1fr; }
  .hero-card   { margin-top: 30px; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-badge { bottom: 10px; right: 10px; }
  .gifts-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links   { display: none; }
  .hamburger   { display: flex; }
  .hero        { padding: 100px 0 60px; }
  .hero-stats  { gap: 18px; }
  .trust-inner { gap: 22px; }
  .section     { padding: 60px 0; }
}
