/* ─────────────────────────────────────────
   PORTCITY — Luxury Real Estate Stylesheet
   Maldives Tropical Green + Deep Navy
───────────────────────────────────────── */

:root {
  --navy:       #0B1E3D;
  --navy-deep:  #061428;
  --navy-mid:   #122543;
  --green:      #1B8C6E;
  --green-light:#25B08C;
  --green-teal: #0D9488;
  --teal:       #14B8A6;
  --teal-light: #5EEAD4;
  --white:      #FFFFFF;
  --off-white:  #F4F7F5;
  --light-gray: #EEF2F0;
  --text-body:  #2D3A35;
  --text-muted: #6B7E76;
  --border:     rgba(20,184,166,.18);
  --glass-bg:   rgba(11,30,61,.55);
  --glass-light:rgba(255,255,255,.07);
  --shadow-card:0 12px 48px rgba(11,30,61,.15);
  --shadow-green:0 6px 32px rgba(27,140,110,.28);
  --transition: .38s cubic-bezier(.4,0,.2,1);
}

/* ─ RESET ─ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─ TYPOGRAPHY ─ */
.section-label {
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.line { flex: 1; height: 1px; background: var(--green); max-width: 48px; }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.15;
  color: var(--navy); margin-bottom: 18px;
}
.section-title.white { color: var(--white); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.white-sub { color: rgba(255,255,255,.65); }
.center-label { text-align: center; margin-bottom: 54px; }
.center-label .section-label { justify-content: center; }

/* ─ LAYOUT ─ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }
.section-dark { background: var(--navy-deep); }
.section-light { background: var(--off-white); }

/* ─ BUTTONS ─ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: 4px;
  background: linear-gradient(135deg, var(--green), var(--green-teal));
  color: var(--white); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(27,140,110,.36);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(27,140,110,.48); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.45);
  color: var(--white); font-weight: 500; font-size: .95rem;
  transition: var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--teal); }

/* ─ NAVBAR ─ */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(6,20,40,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(20,184,166,.15);
  box-shadow: 0 4px 32px rgba(6,20,40,.4);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.logo-img { width: 52px; height: 52px; object-fit: cover; border-radius: 8px; }
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 700; color: var(--white); letter-spacing: .04em; }
.logo-sub { font-size: .62rem; color: var(--teal-light); letter-spacing: .06em; text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--teal); transition: width .25s; }
.nav-links a:hover { color: var(--teal-light); }
.nav-links a:hover::after { width: 100%; }
.btn-nav {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 4px;
  background: linear-gradient(135deg,var(--green),var(--green-teal));
  color: #fff; font-size: .85rem; font-weight: 600;
  transition: var(--transition);
}
.btn-nav:hover { box-shadow: var(--shadow-green); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

/* ─ HERO ─ */
#hero {
  min-height: 100vh; position: relative;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden; background: var(--navy-deep);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0a2440 40%, #0d3a2e 80%, #061428 100%);
}
.hero-particles { position: absolute; inset: 0; }
.particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,.45), transparent 70%);
  animation: float-particle linear infinite;
}
.ocean-wave {
  position: absolute; bottom: 0; left: 0; right: 0; height: 220px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 220'%3E%3Cpath fill='%230B1E3D' fill-opacity='0.25' d='M0,96L60,112C120,128,240,160,360,165.3C480,171,600,149,720,128C840,107,960,85,1080,90.7C1200,96,1320,128,1380,144L1440,160L1440,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom;
  background-size: cover; opacity: .4;
}
@keyframes float-particle { 0%{transform:translateY(100vh) scale(0);opacity:0} 10%{opacity:1} 90%{opacity:.5} 100%{transform:translateY(-20vh) scale(1.5);opacity:0} }
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  gap: 48px; padding: 120px 80px 80px;
  max-width: 1400px; margin: 0 auto; width: 100%;
}
.hero-left { flex: 0 0 52%; }
.hero-location {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: var(--teal-light); margin-bottom: 20px;
}
.dot-anim {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  display: inline-block; animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{box-shadow:0 0 0 0 rgba(20,184,166,.6)} 50%{box-shadow:0 0 0 8px rgba(20,184,166,0)} }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700; line-height: 1.08; color: var(--white);
  margin-bottom: 20px;
}
.accent-green { color: var(--teal-light); font-style: italic; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.6); margin-bottom: 40px; letter-spacing: .04em; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-right { flex: 0 0 42%; }
.hero-tower-card { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(20,184,166,.2); }
.hero-tower-img { width: 100%; height: 480px; object-fit: cover; display: block; }
.hero-card-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(11,30,61,.85); backdrop-filter: blur(12px);
  color: var(--teal-light); font-size: .82rem; font-weight: 600;
  padding: 10px 18px; border-radius: 30px;
  border: 1px solid rgba(20,184,166,.3);
  display: flex; align-items: center; gap: 8px;
}

/* stats bar */
.hero-stats {
  position: relative; z-index: 3;
  background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0; padding: 28px 40px;
  box-shadow: 0 -4px 40px rgba(11,30,61,.15);
}
.stat-item { display: flex; align-items: center; gap: 12px; padding: 8px 32px; }
.stat-item i { font-size: 1.4rem; color: var(--green); }
.stat-item strong { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 700; color: var(--navy); display: block; line-height: 1; }
.stat-item span { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.stat-sep { width: 1px; height: 48px; background: var(--border); }

.scroll-hint {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: rgba(255,255,255,.4); font-size: 1.1rem;
  animation: bounce-scroll 2s ease-in-out infinite;
}
@keyframes bounce-scroll { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─ REVEAL ANIMATIONS ─ */
[data-reveal] { opacity: 0; transform: translateY(48px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-right] { opacity: 0; transform: translateX(48px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal-right].revealed { opacity: 1; transform: translateX(0); }

/* ─ ABOUT ─ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; border-radius: 16px; overflow: visible; }
.about-img { width: 100%; height: 520px; object-fit: cover; border-radius: 16px; box-shadow: var(--shadow-card); }
.about-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg,var(--green),var(--green-teal));
  color: #fff; border-radius: 16px; padding: 20px 28px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: var(--shadow-green);
}
.badge-num { font-family:'Cormorant Garamond',serif; font-size: 2.6rem; font-weight: 700; line-height: 1; }
.badge-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.about-text { color: var(--text-body); margin-bottom: 16px; line-height: 1.75; }
.about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.pillar { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 500; color: var(--navy); }
.pillar i { color: var(--green); }

/* ─ VISION MISSION ─ */
.vm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.vm-card {
  background: var(--glass-light); border: 1px solid rgba(20,184,166,.15);
  border-radius: 16px; padding: 40px 32px;
  transition: var(--transition);
}
.vm-card:hover { transform: translateY(-6px); border-color: rgba(20,184,166,.4); }
.vm-card-accent { background: linear-gradient(135deg,rgba(27,140,110,.2),rgba(20,184,166,.15)); border-color: var(--teal); }
.vm-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg,var(--green),var(--teal)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.vm-icon i { color: #fff; font-size: 1.3rem; }
.vm-card h3 { font-family:'Cormorant Garamond',serif; font-size: 1.5rem; color: var(--white); margin-bottom: 12px; }
.vm-card p { color: rgba(255,255,255,.62); font-size: .93rem; line-height: 1.7; }

/* ─ PROJECT OVERVIEW ─ */
.project-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.project-table { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-card); }
.po-row { display: flex; align-items: flex-start; border-bottom: 1px solid var(--light-gray); }
.po-row:last-child { border-bottom: none; }
.po-key { flex: 0 0 140px; padding: 14px 18px; font-size: .83rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; background: var(--off-white); }
.po-val { flex: 1; padding: 14px 18px; font-size: .9rem; color: var(--navy); font-weight: 500; }
.project-highlights { display: flex; flex-direction: column; gap: 18px; }
.ph-card { display: flex; align-items: flex-start; gap: 18px; padding: 20px 24px; border-radius: 12px; background: var(--white); border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(11,30,61,.07); transition: var(--transition); }
.ph-card:hover { border-color: var(--green); transform: translateX(6px); }
.ph-card > i { color: var(--green); font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ph-card strong { display: block; font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.ph-card p { font-size: .85rem; color: var(--text-muted); }

/* ─ APARTMENTS ─ */
.apt-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.apt-card {
  border-radius: 16px; padding: 32px 24px;
  background: var(--white); border: 1px solid var(--light-gray);
  box-shadow: 0 6px 28px rgba(11,30,61,.08);
  transition: var(--transition); position: relative; overflow: hidden;
}
.apt-card::before { content:''; position:absolute; top:0;left:0;right:0; height:3px; background:linear-gradient(90deg,var(--green),var(--teal)); transform:scaleX(0); transform-origin:left; transition:transform .4s; }
.apt-card:hover::before { transform:scaleX(1); }
.apt-card:hover { transform:translateY(-8px); box-shadow: 0 20px 52px rgba(11,30,61,.14); }
.apt-card-featured { border-color: var(--green); background: linear-gradient(160deg,#f0fdf9,#e6f7f3); }
.apt-card-featured::before { transform:scaleX(1); }
.apt-card-penthouse { border-color: var(--teal); background: linear-gradient(160deg,#f0fdfd,#e0f7f5); }
.apt-badge-top { position:absolute; top:0; right:0; background:linear-gradient(135deg,var(--green),var(--teal)); color:#fff; font-size:.7rem; font-weight:700; padding:5px 14px; letter-spacing:.08em; text-transform:uppercase; border-radius:0 16px 0 12px; }
.apt-icon { width:52px; height:52px; border-radius:12px; background:linear-gradient(135deg,var(--green),var(--green-teal)); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.apt-icon i { color:#fff; font-size:1.2rem; }
.apt-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.4rem; color:var(--navy); margin-bottom:4px; }
.apt-count { font-size:.78rem; font-weight:700; color:var(--green); text-transform:uppercase; letter-spacing:.12em; margin-bottom:12px; }
.apt-card p { font-size:.88rem; color:var(--text-muted); line-height:1.65; margin-bottom:18px; }
.apt-features { display:flex; flex-direction:column; gap:6px; }
.apt-features li { font-size:.84rem; color:var(--navy); display:flex; align-items:center; gap:8px; }
.apt-features i { color:var(--green); font-size:.75rem; }

/* ─ AMENITIES ─ */
.amenities-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.am-card {
  background:var(--glass-light); border:1px solid rgba(20,184,166,.15);
  border-radius:14px; padding:28px 22px;
  transition:var(--transition); text-align:center;
}
.am-card:hover { background:rgba(27,140,110,.15); border-color:var(--teal); transform:translateY(-5px); }
.am-card i { font-size:2rem; color:var(--teal-light); margin-bottom:14px; display:block; }
.am-card h4 { font-family:'Cormorant Garamond',serif; font-size:1.15rem; color:var(--white); margin-bottom:8px; }
.am-card p { font-size:.83rem; color:rgba(255,255,255,.55); line-height:1.6; }

/* ─ INVESTMENT ─ */
.investment-section { background:var(--off-white); position:relative; overflow:hidden; }
.inv-bg-shape { position:absolute; top:-200px; right:-200px; width:700px; height:700px; border-radius:50%; background:radial-gradient(circle,rgba(27,140,110,.07),transparent 70%); pointer-events:none; }
.inv-insight-bar {
  display:flex; align-items:center; justify-content:center; flex-wrap:wrap;
  background:linear-gradient(135deg,var(--navy-deep),var(--navy));
  border-radius:16px; padding:32px 40px; gap:0; margin-bottom:56px;
  box-shadow:0 16px 56px rgba(11,30,61,.22);
}
.inv-insight { display:flex; flex-direction:column; align-items:center; gap:4px; padding:0 36px; }
.inv-insight i { color:var(--teal-light); font-size:1.5rem; margin-bottom:6px; }
.inv-insight strong { font-family:'Cormorant Garamond',serif; font-size:2rem; color:var(--white); font-weight:700; line-height:1; }
.inv-insight span { font-size:.75rem; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.1em; }
.inv-insight-sep { width:1px; height:60px; background:rgba(255,255,255,.12); }
.inv-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-bottom:56px; }
.inv-card {
  background:var(--white); border:1px solid var(--border); border-radius:14px; padding:32px 24px;
  box-shadow:0 4px 20px rgba(11,30,61,.07); transition:var(--transition);
}
.inv-card:hover { border-color:var(--green); box-shadow:0 12px 48px rgba(27,140,110,.15); transform:translateY(-6px); }
.inv-icon { width:50px; height:50px; border-radius:12px; background:linear-gradient(135deg,var(--green),var(--green-teal)); display:flex; align-items:center; justify-content:center; margin-bottom:18px; }
.inv-icon i { color:#fff; font-size:1.2rem; }
.inv-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; color:var(--navy); margin-bottom:10px; }
.inv-card p { font-size:.88rem; color:var(--text-muted); line-height:1.65; }

/* Why Maldives */
.why-maldives { background:linear-gradient(135deg,var(--navy-deep),var(--navy-mid)); border-radius:20px; padding:52px 48px; }
.wm-title { font-family:'Cormorant Garamond',serif; font-size:2rem; color:var(--white); margin-bottom:36px; text-align:center; }
.wm-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.wm-item { text-align:center; }
.wm-item i { font-size:2rem; color:var(--teal-light); margin-bottom:14px; display:block; }
.wm-item strong { display:block; color:var(--white); font-size:1rem; margin-bottom:8px; }
.wm-item p { font-size:.85rem; color:rgba(255,255,255,.5); line-height:1.6; }

/* ─ TIMELINE ─ */
.timeline { display:flex; flex-direction:column; gap:0; margin-bottom:40px; position:relative; }
.timeline::before { content:''; position:absolute; left:50px; top:0; bottom:0; width:2px; background:linear-gradient(to bottom,var(--green),var(--teal)); border-radius:2px; }
.tl-item { display:flex; gap:36px; align-items:flex-start; padding-bottom:40px; position:relative; }
.tl-num { flex-shrink:0; width:48px; height:48px; border-radius:50%; background:linear-gradient(135deg,var(--green),var(--teal)); color:#fff; font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:700; display:flex; align-items:center; justify-content:center; z-index:1; position:relative; box-shadow:0 4px 16px rgba(27,140,110,.35); }
.tl-phase { font-size:.78rem; font-weight:700; color:var(--green); text-transform:uppercase; letter-spacing:.12em; margin-bottom:8px; }
.tl-body { flex:1; background:var(--white); border-radius:12px; padding:28px 28px; border:1px solid var(--border); box-shadow:0 4px 20px rgba(11,30,61,.07); }
.tl-body h3 { font-family:'Cormorant Garamond',serif; font-size:1.4rem; color:var(--navy); margin-bottom:10px; }
.tl-body p { font-size:.9rem; color:var(--text-muted); line-height:1.65; margin-bottom:14px; }
.tl-invest { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(135deg,rgba(27,140,110,.1),rgba(20,184,166,.1)); padding:6px 16px; border-radius:20px; font-size:.82rem; color:var(--green); font-weight:600; }
.disbursement-box { display:flex; gap:20px; align-items:flex-start; background:linear-gradient(135deg,rgba(27,140,110,.08),rgba(20,184,166,.06)); border:1px solid rgba(27,140,110,.2); border-radius:14px; padding:28px 32px; }
.disbursement-box i { color:var(--green); font-size:1.4rem; flex-shrink:0; margin-top:2px; }
.disbursement-box strong { display:block; color:var(--navy); font-size:1rem; margin-bottom:6px; }
.disbursement-box p { font-size:.88rem; color:var(--text-muted); line-height:1.65; }

/* ─ GALLERY ─ */
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); grid-template-rows:repeat(2,200px); gap:16px; }
.gal-item { border-radius:12px; overflow:hidden; position:relative; cursor:pointer; }
.gal-large { grid-column:1/3; grid-row:1/3; }
.gal-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.gal-item:hover img { transform:scale(1.08); }
.gal-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(6,20,40,.75),transparent); display:flex; align-items:flex-end; padding:20px; opacity:0; transition:.35s; }
.gal-item:hover .gal-overlay { opacity:1; }
.gal-overlay span { color:#fff; font-size:.9rem; font-weight:600; letter-spacing:.04em; }

/* ─ CONTACT ─ */
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:72px; align-items:start; }
.contact-intro { color:var(--text-muted); line-height:1.7; margin-bottom:36px; }
.contact-details { display:flex; flex-direction:column; gap:20px; }
.cd-item { display:flex; align-items:flex-start; gap:16px; }
.cd-item i { width:42px; height:42px; border-radius:10px; background:linear-gradient(135deg,var(--green),var(--green-teal)); color:#fff; display:flex; align-items:center; justify-content:center; font-size:1rem; flex-shrink:0; }
.cd-item strong { display:block; color:var(--navy); font-weight:600; margin-bottom:4px; }
.cd-item p { font-size:.88rem; color:var(--text-muted); }
.contact-form-wrap { background:var(--white); border:1px solid var(--border); border-radius:20px; padding:44px 40px; box-shadow:0 12px 56px rgba(11,30,61,.1); }
.contact-form h3 { font-family:'Cormorant Garamond',serif; font-size:1.8rem; color:var(--navy); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:20px; }
.form-group label { font-size:.8rem; font-weight:600; color:var(--navy); text-transform:uppercase; letter-spacing:.08em; }
.form-group input, .form-group select, .form-group textarea {
  padding:12px 16px; border:1.5px solid var(--light-gray); border-radius:8px;
  font-family:'DM Sans',sans-serif; font-size:.92rem; color:var(--text-body);
  background:var(--off-white); transition:border-color .25s; outline:none; resize:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--green); }
.form-btn { width:100%; justify-content:center; padding:16px; font-size:1rem; }

/* ─ FOOTER ─ */
#footer { background:var(--navy-deep); }
.footer-top { padding:72px 0 48px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.4fr; gap:48px; }
.footer-logo { width:60px; height:60px; object-fit:cover; border-radius:10px; margin-bottom:16px; }
.footer-tagline { font-size:.78rem; color:var(--teal-light); text-transform:uppercase; letter-spacing:.14em; margin-bottom:12px; }
.footer-desc { font-size:.87rem; color:rgba(255,255,255,.45); line-height:1.7; margin-bottom:24px; }
.footer-social { display:flex; gap:12px; }
.footer-social a { width:38px; height:38px; border-radius:8px; border:1px solid rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,.6); transition:.25s; }
.footer-social a:hover { background:var(--green); border-color:var(--green); color:#fff; }
.footer-links h4, .footer-contact h4 { font-size:.82rem; font-weight:700; color:var(--white); text-transform:uppercase; letter-spacing:.14em; margin-bottom:20px; }
.footer-links ul li { margin-bottom:10px; }
.footer-links ul li a { font-size:.87rem; color:rgba(255,255,255,.5); transition:color .2s; }
.footer-links ul li a:hover { color:var(--teal-light); }
.footer-contact p { font-size:.85rem; color:rgba(255,255,255,.5); margin-bottom:10px; display:flex; align-items:flex-start; gap:10px; }
.footer-contact i { color:var(--teal); flex-shrink:0; margin-top:2px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding:20px 0; text-align:center; }
.footer-bottom p { font-size:.8rem; color:rgba(255,255,255,.3); }

/* ─ MOBILE MENU ─ */
.mobile-menu {
  position:fixed; top:0; right:-100%; width:300px; height:100vh;
  background:var(--navy); z-index:999; padding:80px 40px 40px;
  transition:right .4s cubic-bezier(.4,0,.2,1);
  box-shadow:-8px 0 40px rgba(0,0,0,.4);
}
.mobile-menu.open { right:0; }
.mobile-menu ul li { margin-bottom:20px; }
.mobile-menu ul li a { font-size:1.2rem; color:rgba(255,255,255,.8); font-weight:500; transition:color .2s; }
.mobile-menu ul li a:hover { color:var(--teal-light); }

/* ─ RESPONSIVE ─ */
@media (max-width:1100px) {
  .apt-grid { grid-template-columns:repeat(2,1fr); }
  .amenities-grid { grid-template-columns:repeat(3,1fr); }
  .wm-grid { grid-template-columns:repeat(2,1fr); }
  .inv-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width:900px) {
  .hero-inner { flex-direction:column; padding:100px 32px 40px; }
  .hero-left, .hero-right { flex:none; width:100%; }
  .hero-tower-img { height:360px; }
  .about-grid, .project-overview-grid, .contact-grid { grid-template-columns:1fr; }
  .about-img { height:360px; }
  .about-badge { right:16px; bottom:-16px; }
  .vm-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .gal-large { grid-column:1/3; grid-row:auto; }
  nav .nav-links, .btn-nav { display:none; }
  .hamburger { display:flex; }
  .hero-stats { gap: 0; padding: 16px; }
  .stat-item { padding: 6px 12px; }
}
@media (max-width:640px) {
  .section { padding: 64px 0; }
  .apt-grid { grid-template-columns:1fr; }
  .amenities-grid { grid-template-columns:1fr 1fr; }
  .inv-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .hero-inner { padding: 90px 20px 30px; }
  .timeline::before { left:24px; }
  .tl-num { width:40px; height:40px; font-size:.9rem; }
  .inv-insight-bar { flex-direction:column; gap:20px; }
  .inv-insight-sep { width:80%; height:1px; }
  .stat-sep { display:none; }
  .hero-stats { flex-direction:column; gap:12px; padding:20px; }
  .stat-item { justify-content:center; }
}
/* LOGO */

.logo-img{
    width:70px;
    height:70px;
    object-fit:contain;
    border-radius:10px;
}

/* AMENITIES IMAGES */

.am-img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:18px;
    transition:0.5s ease;
}

.am-card{
    overflow:hidden;
}

.am-card:hover .am-img{
    transform:scale(1.05);
}

/* APARTMENT IMAGES */

.apt-img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:14px;
    margin-bottom:18px;
    transition:0.5s ease;
}

.apt-card{
    overflow:hidden;
}

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

.book-center{
    display:flex;
    justify-content:center;
    margin-top:40px;
    margin-bottom:50px;
}

.book-btn{
    background:#071c3c;
    color:#fff;
    padding:22px 70px;
    border-radius:14px;
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    transition:0.4s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.book-btn:hover{
    background:#0b2b59;
    transform:translateY(-5px);
}
.india-line{
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:6px;
}

.india-line .fa-whatsapp{
    color:#25D366;
    font-size:18px;
}
.whatsapp-icon{
    color:#25D366;
    margin-right:8px;
    font-size:18px;
}