/* ============================================================
   RESET & CSS VARIABLES — Premium Luxury Palette
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Core */
  --ink:        #0D1117;
  --navy:       #141E3C;
  --navy-mid:   #1E2D52;
  --gold:       #C5A45E;
  --gold-light: #DFC07A;
  --crimson:    #B91C1C;
  --white:      #FFFFFF;
  --cream:      #FAF8F4;
  --pearl:      #F4F2ED;
  --stroke:     #DEDBD3;
  --muted:      #9A9590;
  --body:       #3D3A35;
  --body-light: #6E6A62;

  /* Type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Montserrat', 'Helvetica Neue', Arial, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t: 0.3s;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; }
a { text-decoration: none; color: inherit; }


/* ============================================================
   STICKY NAV BAR
============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-nav.scrolled {
  background: rgba(10, 14, 30, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(197,164,94,0.15);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo, .hero-logo, .footer-logo {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
}
.nav-logo, .hero-logo { font-size: 1.4rem; padding: 4px 0; }
.nav-logo { opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.site-nav.scrolled .nav-logo { opacity: 1; pointer-events: auto; }
.footer-logo { font-size: 1.5rem; justify-content: center; margin-bottom: 24px; }
.logo-invest { color: #fff; }
.logo-georgia { color: #e3000f; }
.logo-uae {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 0.35em;
  font-weight: 700;
  line-height: 1.1;
  padding-left: 0.25rem;
  letter-spacing: -2px;
  background: linear-gradient(180deg, #00732f 33%, #fff 33%, #fff 66%, #000 66%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.1em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
.btn-nav-cta {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 10px 20px;
  white-space: nowrap;
  transition: background 0.25s var(--ease), transform 0.2s;
}
.btn-nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }


/* ============================================================
   HERO — Full-viewport image, form floats as overlay card
============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

/* Image wrapper — fills the hero absolutely */
.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.06);
  transition: transform 9s ease-out;
  will-change: transform;
}
.hero.loaded .hero-bg { transform: scale(1); }

/* Gradient */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10,14,30,0.72) 0%,
      rgba(10,14,30,0.30) 50%,
      rgba(10,14,30,0.55) 100%
    ),
    linear-gradient(to top,
      rgba(10,14,30,0.65) 0%,
      transparent 60%
    );
}

/* ---- Hero logo (inside image-wrap) ---- */
.hero-logo {
  position: absolute;
  top: 32px;
  left: 52px;
  z-index: 10;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.hero-logo-img {
  height: 30px;
  width: auto;
  background: rgba(255,255,255,0.92);
  padding: 3px 8px;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.hero-logo:hover .hero-logo-img { opacity: 1; }

/* ---- Hero headline text (inside image-wrap) ---- */
.hero-text {
  position: absolute;
  left: 52px;
  bottom: 310px;
  z-index: 5;
  max-width: 560px;
  animation: fadeUp 1s var(--ease) 0.25s both;
}
.hero-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.8;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}

/* ---- Investment stats bar (primary selling propositions) ---- */
.hero-stats-bar {
  position: absolute;
  left: 52px;
  bottom: 155px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0;
  animation: fadeUp 1s var(--ease) 0.45s both;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 36px 0 0;
}
.hero-stat-item:last-child { padding-right: 0; }
.hero-stat-label {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1;
}
.hero-stat-value {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1;
  letter-spacing: 0.02em;
}
.hero-stat-sep {
  width: 1px;
  height: 56px;
  background: rgba(197,164,94,0.4);
  margin: 0 36px 0 0;
  flex-shrink: 0;
}

/* ---- Trust badges (inside image-wrap) ---- */
.hero-badges {
  position: absolute;
  bottom: 36px;
  left: 52px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeUp 1s var(--ease) 0.6s both;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,14,30,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(197,164,94,0.3);
  padding: 10px 18px;
}
.badge-icon { font-size: 0.85rem; color: var(--gold); }
.badge-text { display: flex; flex-direction: column; gap: 2px; }
.badge-title {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}
.badge-desc {
  font-size: 0.6rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
}


/* ============================================================
   FLOATING FORM CARD
============================================================ */
.hero-form-card {
  position: absolute;
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
  z-index: 20;
  width: 380px;
  background: var(--cream);
  border-top: 3px solid var(--gold);
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 20px 60px rgba(0,0,0,0.32),
    0 40px 100px rgba(0,0,0,0.18);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  scrollbar-width: none;
  overscroll-behavior: contain;
  animation: slideIn 0.9s var(--ease) 0.1s both;
  padding: 32px 30px 28px;
}
.hero-form-card::-webkit-scrollbar { display: none; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(calc(-50% + 24px)); }
  to   { opacity: 1; transform: translateY(-50%); }
}

/* Form title */
.form-card-title {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--stroke);
  line-height: 1.4;
}

/* ---- Fields ---- */
.register-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  color: var(--ink);
  text-transform: uppercase;
}
.req { color: var(--crimson); }

input[type="text"],
input[type="email"],
input[type="tel"] {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--stroke);
  padding: 12px 13px;
  outline: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition:
    border-color var(--t) var(--ease),
    box-shadow var(--t) var(--ease);
}
input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(20,30,60,0.07);
}
input::placeholder { color: #C2BEB6; font-size: 0.8rem; }
.form-group.has-error input,
.form-group.has-error select { border-color: var(--crimson); }
.field-error {
  font-size: 0.6rem;
  color: var(--crimson);
  display: none;
  letter-spacing: 0.03em;
}
.form-group.has-error .field-error { display: block; }

/* Phone row */
.phone-row { display: flex; gap: 8px; }
.country-select-wrap { position: relative; width: 114px; flex-shrink: 0; }

select {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--stroke);
  padding: 12px 28px 12px 11px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color var(--t) var(--ease);
}
select:focus { border-color: var(--navy); }

.chevron {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 9px;
  height: 5px;
  color: var(--muted);
  pointer-events: none;
}

/* Privacy */
.form-privacy {
  font-size: 0.64rem;
  color: var(--body-light);
  line-height: 1.6;
  margin-top: -2px;
}
.form-privacy a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: -2px;
}
.form-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 1px solid var(--stroke);
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--navy);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: auto;
}
.form-check span {
  font-size: 0.67rem;
  color: var(--body-light);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Submit */
.btn-submit {
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  padding: 14px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition:
    background var(--t) var(--ease),
    transform 0.2s var(--ease);
  margin-top: 4px;
}
.btn-submit:hover  { background: var(--crimson); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.65; pointer-events: none; }

.btn-loader {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: var(--white);
  border-radius: 50%;
  display: none;
  animation: spin 0.7s linear infinite;
}
.btn-loader.show { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- OTP Step ---- */
.otp-step {
  display: none;
  flex-direction: column;
  gap: 16px;
}
.otp-step.show { display: flex; }
.otp-intro {
  font-size: 0.72rem;
  color: var(--body);
  line-height: 1.7;
}
.otp-intro strong { color: var(--ink); }
.otp-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.otp-box {
  width: 44px !important;
  height: 52px;
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--stroke);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  padding: 0 !important;
  border-radius: 0;
}
.otp-box:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(20,30,60,0.09);
}
.otp-box.filled { border-color: var(--gold); }
.otp-error { display: none; }
.otp-error.show { display: block; }
.otp-resend {
  font-size: 0.64rem;
  color: var(--body-light);
  text-align: center;
}
.otp-resend-btn {
  background: none;
  border: none;
  color: var(--navy);
  font-size: 0.64rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.otp-resend-btn:disabled { color: var(--muted); cursor: not-allowed; text-decoration: none; }

/* Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 6px;
  animation: fadeUp 0.5s var(--ease);
}
.form-success.show { display: flex; }
.success-check {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(197,164,94,0.3);
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.3;
}
.form-success p {
  font-size: 0.72rem;
  color: var(--body-light);
  line-height: 1.8;
}
.btn-success-scroll {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 12px 22px;
  transition: background 0.25s var(--ease);
}
.btn-success-scroll:hover { background: var(--gold); }


/* ============================================================
   BELOW-FOLD
============================================================ */
.below-fold { background: var(--cream); }

/* STATS BAR */
.stats-bar {
  background: var(--navy);
  padding: 52px 40px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat { flex: 1; min-width: 160px; text-align: center; padding: 14px 32px; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.stat-lbl {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  line-height: 1.6;
}
.stat-div {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ABOUT */
.about-sec {
  padding: 96px 40px;
  background: var(--cream);
}
.about-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.section-label {
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 22px;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.8vw, 2.3rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 30px;
}
.about-quote {
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-style: italic;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.85;
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  text-align: left;
  margin-bottom: 28px;
}
.about-body {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--body-light);
  line-height: 1.95;
  text-align: left;
}


/* ============================================================
   PROPERTIES
============================================================ */
.props-sec {
  padding: 88px 40px;
  background: var(--pearl);
}
.sec-head { text-align: center; margin-bottom: 52px; }
.sec-sub {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.06em;
  margin-top: 12px;
  line-height: 1.6;
}

/* 3-column grid, wraps to 2 then 1 */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1340px;
  margin: 0 auto;
}

/* Property Card — data-table style */
.prop-card {
  background: var(--white);
  border: 1px solid var(--stroke);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
  cursor: pointer;
  padding: 0 0 22px;
  overflow: hidden;
}
.prop-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.prop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 0;
  margin-bottom: 6px;
}
.prop-developer {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.prop-badge-wrap { display: flex; gap: 6px; }

/* Status badges */
.prop-status {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
}
.prop-status.ready    { background: rgba(16, 120, 52, 0.1); color: #107834; }
.prop-status.offplan  { background: rgba(20, 30, 60, 0.08); color: var(--navy); }
.prop-status.villa    { background: rgba(197, 164, 94, 0.15); color: #8a6f2e; }
.prop-status.entry    { background: rgba(185, 28, 28, 0.08); color: var(--crimson); }
.prop-status.landmark { background: rgba(10, 14, 30, 0.08); color: var(--ink); }
.prop-status.resort   { background: rgba(30, 45, 82, 0.1); color: var(--navy-mid); }

.prop-name {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.03em;
  padding: 0 20px;
  margin-bottom: 4px;
}
.prop-meta {
  font-size: 0.62rem;
  color: var(--body-light);
  font-weight: 300;
  letter-spacing: 0.04em;
  padding: 0 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.prop-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 0 20px 14px;
  border-bottom: 1px solid var(--stroke);
}
.prop-location svg { width: 8px; height: 11px; flex-shrink: 0; color: var(--gold); }

/* Data grid — 2x2 */
.prop-data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--stroke);
}
.prop-data-item {
  padding: 13px 20px;
  border-right: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.prop-data-item:nth-child(even) { border-right: none; }
.prop-data-item:nth-child(3),
.prop-data-item:nth-child(4) { border-bottom: none; }

.prop-data-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.prop-data-val {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--body);
  line-height: 1.4;
}
.prop-data-val.price {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}
.prop-data-val.roi {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: #107834;
}

.btn-prop-cta {
  margin: 18px 20px 0;
  background: var(--navy);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  padding: 13px 16px;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.2s;
  align-self: stretch;
  text-align: center;
}
.btn-prop-cta:hover { background: var(--gold); transform: translateY(-1px); }


/* WHY */
.why-sec { padding: 88px 40px; background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  max-width: 1060px;
  margin: 0 auto;
}
.why-item { text-align: left; }
.why-icon { width: 46px; height: 46px; margin-bottom: 18px; }
.why-icon svg { width: 100%; height: 100%; }
.why-item h3 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.5;
}
.why-item p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--body-light);
  line-height: 1.9;
}


/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--ink);
  padding: 56px 40px;
  text-align: center;
  border-top: 1px solid rgba(197,164,94,0.18);
}
.footer-inner { max-width: 720px; margin: 0 auto; }
.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-logo .logo-invest  { color: var(--white); }
.footer-logo .logo-georgia { color: var(--crimson); }
.footer-logo .logo-uae     { color: var(--gold); font-size: 0.45rem; letter-spacing: 0.2em; align-self: flex-start; margin-top: 3px; }
.footer-address {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  line-height: 1.6;
}
.footer-contact {
  font-size: 0.66rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.footer-contact a {
  color: var(--gold);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-tag {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.07em;
  margin-bottom: 18px;
  line-height: 1.7;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 22px;
}
.footer-links a {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-legal {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.18);
  line-height: 1.9;
}


/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .props-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .hero-form-card { right: 36px; width: 356px; padding: 28px 26px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .site-nav { padding: 0 28px; }
  .nav-links { gap: 20px; }
}

@media (max-width: 860px) {
  /* Stack: image on top, form below */
  .hero {
    height: auto;
    min-height: unset;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }
  .hero-image-wrap {
    position: relative;
    inset: auto;
    height: 60vh;
    min-height: 380px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .hero-overlay {
    background:
      linear-gradient(to bottom,
        rgba(10,14,30,0.4) 0%,
        rgba(10,14,30,0.15) 40%,
        rgba(10,14,30,0.72) 100%
      );
  }
  .hero-logo { top: 22px; left: 22px; display: flex; }
  .hero-text {
    left: 22px;
    right: 22px;
    bottom: 220px;
    max-width: 100%;
  }
  .hero-headline { font-size: clamp(1.7rem, 7vw, 2.6rem); }
  .hero-stats-bar {
    left: 22px;
    bottom: 70px;
    gap: 0;
  }
  .hero-stat-value { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-stat-item { padding-right: 24px; }
  .hero-stat-sep { margin-right: 24px; height: 44px; }
  .hero-badges { display: none; }
  .hero-form-card {
    position: static;
    transform: none;
    width: 100%;
    max-height: none;
    overflow-y: visible;
    box-shadow: none;
    border-top: 3px solid var(--gold);
    padding: 28px 22px 32px;
    animation: none;
    background: var(--cream);
  }
  .site-nav { display: none; }
  .stats-bar { padding: 40px 22px; }
  .stat-div  { display: none; }
  .stat { min-width: 140px; }
  .about-sec, .props-sec, .why-sec { padding: 60px 22px; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
  .props-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .site-footer { padding: 44px 22px; }
}

@media (max-width: 640px) {
  .props-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-logo { left: 18px; top: 18px; }
  .hero-text { left: 18px; right: 18px; bottom: 210px; }
  .hero-stats-bar { left: 18px; bottom: 58px; }
  .hero-stat-value { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }
  .hero-stat-item { padding-right: 18px; }
  .hero-stat-sep { margin-right: 18px; height: 38px; }
  .hero-form-card { padding: 26px 18px 30px; }
  .otp-box { width: 38px !important; height: 46px; font-size: 1.1rem; }
}
