/* ============================================
   MOHAMMED MEKOUAR — REDESIGNED CSS
   Formal, dense, minimalist, no Arabic
   ============================================ */

/* ---------- VARIABLES ---------- */
:root {
  --black: #000000;
  --dark: #080808;
  --dark2: #0F0F0F;
  --card: #131313;
  --card2: #1A1A1A;
  --gold: #C9A84C;
  --gold-muted: #A38A3A;
  --gold-glow: rgba(201,168,76,0.12);
  --white: #FFFFFF;
  --off-white: #E8E8E8;
  --gray: #8A8A8A;
  --gray-dark: #555555;
  --border: rgba(255,255,255,0.06);
  --border-gold: rgba(201,168,76,0.2);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- SHARED TYPOGRAPHY ---------- */
.label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.label.center { text-align: center; }

.heading-lg {
  font-family: var(--serif);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
}
.heading-lg.center { text-align: center; }

.body-text {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  min-height: 48px;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: #D4B85C;
  box-shadow: 0 4px 24px rgba(201,168,76,0.3);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-1px);
}
.btn-full { width: 100%; justify-content: center; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: all 0.35s var(--ease);
}
.navbar.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 60px;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  padding: 0 24px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.nav-cta {
  background: var(--gold);
  color: var(--black);
  padding: 9px 20px;
  border-radius: 2px;
  font-weight: 700;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: #D4B85C; color: var(--black); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 1100;
  opacity: 0; transition: opacity 0.3s;
}
.mobile-overlay.active { display: block; opacity: 1; }
.mobile-menu {
  position: fixed; top: 0; right: -300px;
  width: 280px; height: 100dvh;
  background: #0A0A0A;
  border-left: 1px solid var(--border);
  z-index: 1200; padding: 80px 28px 32px;
  display: flex; flex-direction: column;
  transition: right 0.35s var(--ease);
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  font-size: 24px; color: var(--gray); line-height: 1;
  transition: color 0.3s;
}
.mobile-close:hover { color: var(--gold); }
.mobile-nav-links { display: flex; flex-direction: column; }
.mobile-nav-link {
  display: block; padding: 16px 0;
  font-size: 18px; font-family: var(--serif);
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-wa-btn {
  margin-top: auto;
  display: flex; align-items: center; gap: 8px; justify-content: center;
  background: #25D366; color: var(--white);
  padding: 14px; border-radius: 3px;
  font-size: 13px; font-weight: 600;
  transition: background 0.3s;
}
.mobile-wa-btn svg { flex-shrink: 0; }
.mobile-wa-btn:hover { background: #1EBE5D; }

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.03);
  animation: heroDrift 25s ease infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.03); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.85) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 720px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 7px 18px; border-radius: 100px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  background: rgba(0,0,0,0.3);
  margin-bottom: 24px;
}
.hero-name {
  font-family: var(--serif);
  font-size: clamp(38px, 7vw, 78px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero-tagline {
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Stats bar at bottom of hero */
.hero-stats-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 24px 0;
}
.h-stat { text-align: center; }
.h-stat-num {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.h-stat-lbl {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.h-stat-div { width: 1px; height: 36px; background: var(--border); }

/* ========== ABOUT ========== */
.about {
  padding: 96px 0 80px;
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.about-photo-col { position: sticky; top: 100px; }
.about-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.about-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%);
  transition: filter 0.5s;
}
.about-photo-wrap:hover .about-photo { filter: grayscale(0); }

.about-credential-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.cred {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.5px;
}
.cred svg { color: var(--gold); flex-shrink: 0; }

.about-text-col {}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color 0.3s;
}
.highlight:hover { border-color: var(--border-gold); }
.highlight-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.highlight-icon svg { width: 18px; height: 18px; color: var(--gold); }
.highlight strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.highlight span {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

/* ========== DEVELOPERS ========== */
.developers {
  padding: 72px 0;
  background: var(--black);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  max-height: 120px;
}
.carousel-wrap::before,
.carousel-wrap::after {
  content: ''; position: absolute;
  top: 0; bottom: 0; width: 100px; z-index: 2; pointer-events: none;
}
.carousel-wrap::before { left: 0; background: linear-gradient(to right, var(--black), transparent); }
.carousel-wrap::after { right: 0; background: linear-gradient(to left, var(--black), transparent); }
.carousel-track {
  display: flex;
  align-items: center;
  animation: scroll 26s linear infinite;
  width: max-content;
  cursor: grab;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  height: 80px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track:hover { animation-play-state: paused; }
.carousel-track.dragging { cursor: grabbing; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.dev-logo {
  padding: 16px 48px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
  transition: color 0.3s;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  min-width: 200px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
}
.dev-logo:hover { color: var(--gold); }
.dev-logo img {
  display: block;
  width: 120px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
  transition: opacity 0.3s;
}
.dev-logo:hover img {
  opacity: 1;
}
.carousel-hint {
  text-align: center;
  font-size: 12px;
  color: var(--gray-dark);
  margin-top: 14px;
  letter-spacing: 1px;
  opacity: 0.6;
}

/* ========== PROPERTIES ========== */
.properties {
  padding: 96px 0;
  background: var(--dark);
}
.filter-tabs {
  display: flex; gap: 6px; justify-content: center;
  margin-bottom: 40px; flex-wrap: wrap;
}
.filter-tab {
  padding: 9px 24px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--gray-dark);
  background: transparent;
  transition: all 0.3s; cursor: pointer;
  min-height: 40px;
}
.filter-tab:hover { border-color: var(--gold-muted); color: var(--gold); }
.filter-tab.active { background: var(--gold); color: var(--black); border-color: var(--gold); }

.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.property-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.35s var(--ease);
  display: flex; flex-direction: column;
}
.property-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--border-gold);
}
.property-card.hidden { display: none; }

.card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.property-card:hover .card-img { transform: scale(1.04); }
.card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--gold); color: var(--black);
  border-radius: 2px;
}
.card-price {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  font-family: var(--serif); font-size: 16px;
  font-weight: 700; color: var(--gold);
}
.card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.card-dev { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 6px; font-weight: 600; }
.card-title { font-family: var(--serif); font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.card-loc { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--gray); margin-bottom: 14px; }
.card-loc svg { color: var(--gold-muted); flex-shrink: 0; }
.card-info-row {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 11px; color: var(--gray-dark);
  margin-bottom: 6px;
}
.card-info-row span { white-space: nowrap; }
.btn-view {
  margin-top: auto;
  padding: 12px; margin-top: 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--gold);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer; min-height: 44px;
  text-align: center;
}
.btn-view:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }

/* ========== WHY ME ========== */
.why-us {
  padding: 96px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 32px 24px;
  transition: all 0.3s;
}
.feature-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}
.feature-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}
.feature-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.75;
}

/* ========== INVESTMENT CASE STUDY & ROI ========== */
.investment {
  padding: 96px 0;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.investment-intro {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.8;
  max-width: 640px;
  margin: -8px auto 48px;
}

/* Case Study Cards */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease);
}
.case-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.case-card--highlight {
  border-color: var(--border-gold);
}

/* Card image header */
.case-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.case-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s;
  filter: brightness(0.85);
}
.case-card:hover .case-card-img img {
  transform: scale(1.08);
  filter: brightness(0.95);
}
.case-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(15,15,15,0.92) 100%
  );
  pointer-events: none;
}
.case-card-heading {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  z-index: 2;
}
.case-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.case-city {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.case-type {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
}

/* Card body */
.case-card-body {
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.case-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
.case-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.case-stat:last-child { border-bottom: none; }
.case-stat-label {
  font-size: 12px;
  color: var(--gray);
}
.case-stat-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-align: right;
}
.case-stat-value small {
  font-weight: 400;
  color: var(--gray-dark);
  font-size: 11px;
}
.case-highlight-val { color: var(--gold) !important; }
.case-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.case-verdict {
  font-size: 11px;
  color: var(--gray);
  line-height: 1.6;
  font-style: italic;
}
.case-card--highlight .case-verdict { color: var(--gold-muted); }

/* ROI Calculator */
.roi-calc {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.roi-header {
  padding: 32px 36px 0;
}
.roi-title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.roi-subtitle {
  font-size: 13px;
  color: var(--gray);
}
.roi-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.roi-inputs {
  padding: 28px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.roi-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 8px;
}
.roi-field input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}
.roi-field input[type="text"]:focus {
  border-color: var(--gold-muted);
}

/* Range slider */
.roi-field input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  margin-top: 10px;
  cursor: pointer;
}
.roi-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark2);
  box-shadow: 0 2px 8px rgba(201,168,76,0.35);
  cursor: pointer;
  transition: transform 0.15s;
}
.roi-field input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.roi-field input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--dark2);
  box-shadow: 0 2px 8px rgba(201,168,76,0.35);
  cursor: pointer;
}
.roi-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 4px;
  font-size: 10px;
  color: var(--gray-dark);
}

/* Results */
.roi-results {
  background: linear-gradient(170deg, rgba(201,168,76,0.08) 0%, var(--dark2) 60%);
  border-left: 1px solid var(--border);
  padding: 28px 36px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-content: center;
}
.roi-result-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 20px 18px;
  text-align: center;
  transition: border-color 0.3s;
}
.roi-result-card:hover { border-color: var(--border-gold); }
.roi-result--primary {
  grid-column: 1 / -1;
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.1), var(--card));
}
.roi-result-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 8px;
}
.roi-result-value {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.roi-result--primary .roi-result-value {
  font-size: 30px;
  color: var(--gold);
}
.roi-disclaimer {
  padding: 18px 36px;
  font-size: 11px;
  color: var(--gray-dark);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.2);
}

/* ========== CONTACT (INLINE FORM) ========== */
.contact {
  padding: 96px 0 80px;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info-col {}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 13px; color: var(--white); margin-bottom: 2px; }
.contact-detail span,
.contact-detail a { font-size: 13px; color: var(--gray); transition: color 0.3s; }
.contact-detail a:hover { color: var(--gold); }
.contact-wa-btn { margin-top: 8px; }

/* Form */
.contact-form-col { position: relative; }
.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 32px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; min-width: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.contact-form label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  font-size: 13px;
  font-family: var(--sans);
  transition: border-color 0.3s;
  outline: none;
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-muted);
}
.contact-form input.error,
.contact-form textarea.error { border-color: #D44; }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.18); }
.contact-form select { appearance: none; cursor: pointer; }
.contact-form textarea { resize: vertical; min-height: 90px; }
.form-error { font-size: 11px; color: #D44; min-height: 14px; }

/* intl-tel-input overrides — contact form */
.contact-form .iti { width: 100%; }
.contact-form .iti__selected-flag {
  background: var(--dark2) !important;
  border-right: 1px solid var(--border);
  padding: 0 10px;
}
.contact-form .iti__selected-dial-code { color: var(--gray); font-size: 13px; }
.contact-form .iti--separate-dial-code .iti__selected-flag { background: var(--card) !important; }

.form-success {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.form-success.visible { display: flex; }
.success-check {
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--gold);
  margin-bottom: 20px;
}
.form-success h3 { font-family: var(--serif); font-size: 24px; color: var(--white); margin-bottom: 8px; }
.form-success p { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ========== FOOTER ========== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}
.footer-tagline { font-size: 11px; color: var(--gray-dark); margin-top: 4px; letter-spacing: 0.5px; }
.footer-nav { display: flex; gap: 32px; }
.footer-nav a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-dark); transition: color 0.3s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-dark); transition: all 0.3s;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { border-color: var(--gold-muted); color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,0.15); }

/* DLD License Badge */
.footer-dld {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px 0;
  margin-top: 28px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  cursor: default;
  position: relative;
}
.dld-logo {
  width: 56px;
  height: auto;
  opacity: 0.7;
  filter: grayscale(20%);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}
.footer-dld:hover .dld-logo {
  opacity: 0.9;
  filter: grayscale(0%);
}
.dld-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.dld-primary {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-muted);
  letter-spacing: 0.5px;
}
.dld-secondary {
  font-size: 10px;
  color: var(--gray-dark);
  letter-spacing: 0.3px;
}
.footer-dld:hover .dld-primary { color: var(--gold); }
.footer-dld:hover .dld-secondary { color: var(--gray); }

/* Tooltip */
.footer-dld::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--card2);
  color: var(--gray);
  font-size: 11px;
  line-height: 1.5;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid var(--border);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  pointer-events: none;
  z-index: 10;
}
.footer-dld:hover::after {
  opacity: 1;
  visibility: visible;
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all 0.3s;
}
.wa-float svg { width: 26px; height: 26px; color: var(--white); }
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ========== PROPERTY MODAL ========== */
.modal-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); z-index: 1300;
}
.modal-backdrop.active { display: block; }
.modal {
  display: none; position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  width: 90%; max-width: 880px; max-height: 90dvh;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  z-index: 1400;
  overflow-y: auto;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.modal.active { display: block; transform: translate(-50%, -50%) scale(1); opacity: 1; }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 18px; color: var(--white); line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; cursor: pointer;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }

/* Gallery */
.modal-gallery { position: relative; aspect-ratio: 16/9; overflow: hidden; background: #050505; }
.gallery-track { display: flex; height: 100%; transition: transform 0.5s var(--ease); }
.gallery-slide { min-width: 100%; height: 100%; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); font-size: 22px; line-height: 1;
  border-radius: 2px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; z-index: 5;
}
.gallery-arrow:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-dots {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.gallery-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer; transition: all 0.3s; border: none;
}
.gallery-dot.active { background: var(--gold); transform: scale(1.25); }

/* Modal body */
.modal-body { padding: 32px; }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 16px; }
.modal-dev { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 6px; font-weight: 600; }
.modal-name { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--white); }
.modal-status {
  padding: 5px 14px; flex-shrink: 0;
  background: var(--gold-glow);
  border: 1px solid var(--border-gold);
  color: var(--gold); font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 2px; white-space: nowrap;
}
.modal-desc { font-size: 13px; color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.modal-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px; margin-bottom: 28px;
}
.detail-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px;
}
.detail-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 4px; font-weight: 600; }
.detail-value { font-size: 13px; font-weight: 600; color: var(--white); }
.modal-section-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 12px; }
.modal-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.amenity-tag {
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px; color: var(--gray);
  display: flex; align-items: center; gap: 5px;
}
.amenity-icon { font-size: 13px; color: var(--gold); }
.modal-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ========== LEAD FORM MODAL ========== */
#formBackdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.85); z-index: 1500;
}
#formBackdrop.active { display: block; }
.lead-modal {
  display: none; position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  width: 90%; max-width: 520px; max-height: 90dvh;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 4px;
  z-index: 1600;
  overflow-y: auto;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.lead-modal.active { display: block; transform: translate(-50%, -50%) scale(1); opacity: 1; }
.lead-modal-content { padding: 36px 32px; }
.lead-modal-header { margin-bottom: 24px; }
.lead-modal-header .heading-lg { margin-bottom: 0; }
.lead-form { display: block; }
.lead-form .form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; min-width: 0; }
.lead-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
.lead-form label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-muted);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  font-size: 13px;
  font-family: var(--sans);
  transition: border-color 0.3s;
  outline: none;
  min-height: 44px;
  width: 100%;
  box-sizing: border-box;
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--gold-muted);
}
.lead-form input.error,
.lead-form textarea.error { border-color: #D44; }
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(255,255,255,0.18); }
.lead-form select { appearance: none; cursor: pointer; }
.lead-form textarea { resize: vertical; min-height: 90px; }
.lead-form .form-error { font-size: 11px; color: #D44; min-height: 14px; }

/* intl-tel-input overrides — lead form */
.lead-form .iti { width: 100%; }
.lead-form .iti__selected-flag {
  background: var(--card) !important;
  border-right: 1px solid var(--border);
  padding: 0 10px;
}
.lead-form .iti__selected-dial-code { color: var(--gray); font-size: 13px; }
.lead-form .iti--separate-dial-code .iti__selected-flag { background: var(--dark2) !important; }

/* Lead tabs */
.lead-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.lead-tab {
  flex: 1;
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-dark);
  background: var(--card);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  position: relative;
}
.lead-tab + .lead-tab { border-left: 1px solid var(--border); }
.lead-tab:hover { color: var(--white); }
.lead-tab.active {
  background: var(--gold);
  color: var(--black);
}

/* Tab panels */
.lead-tab-panel {
  display: none;
}
.lead-tab-panel.active {
  display: block;
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* intl-tel-input global dark theme */
.iti__country-list {
  background: #1a1a1a !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 4px;
  max-height: 220px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-muted) transparent;
}
.iti__country-list .iti__country {
  padding: 8px 12px !important;
  color: #ccc;
  transition: background 0.15s;
}
.iti__country-list .iti__country:hover,
.iti__country-list .iti__country.iti__highlight {
  background: rgba(201,168,76,0.15) !important;
  color: var(--white);
}
.iti__country-list .iti__dial-code { color: var(--gold-muted); }
.iti__country-list .iti__divider {
  border-bottom-color: rgba(255,255,255,0.08) !important;
}
.iti__arrow { border-top-color: var(--gray) !important; }
.iti__arrow--up { border-bottom-color: var(--gray) !important; }

.lead-modal .form-success {
  display: none;
  background: var(--dark2);
  border: none;
  border-radius: 4px;
  padding: 36px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  inset: auto;
}
.lead-modal .form-success.visible { display: flex; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .case-study-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card--highlight { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-col { position: static; max-width: 400px; margin: 0 auto; }
  .about-credential-strip { justify-content: center; }
  .about-text-col { text-align: center; }
  .about-highlights { align-items: center; }
  .highlight { text-align: left; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-col { text-align: center; }
  .contact-details { align-items: center; }
  .contact-detail { text-align: left; }
  .contact-wa-btn { margin: 0 auto; }
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .lead-form .form-row { grid-template-columns: 1fr; }
  .lead-tabs { flex-direction: column; }
  .lead-tab + .lead-tab { border-left: none; border-top: 1px solid var(--border); }
  .modal-body { padding: 24px; }
  .modal-name { font-size: 22px; }
  .roi-body { grid-template-columns: 1fr; }
  .roi-results { border-left: none; border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats-inner { flex-wrap: wrap; gap: 20px; padding: 18px 16px; }
  .h-stat-div { display: none; }
  .properties-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-dld { justify-content: center; text-align: center; }
  .footer-dld .dld-text { align-items: center; }
  .footer-nav { flex-wrap: wrap; gap: 20px; }
  .footer-bottom { flex-direction: column; }
  .modal { width: 100%; max-height: 100dvh; top: 0; left: 0; transform: none; border-radius: 0; }
  .modal.active { transform: none; }
  .gallery-arrow { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .wa-float svg { width: 22px; height: 22px; }
  .lead-modal { width: 100%; max-height: 100dvh; top: 0; left: 0; transform: none; border-radius: 0; }
  .lead-modal.active { transform: none; }
  .lead-modal-content { padding: 24px 18px; }
  .case-study-grid { grid-template-columns: 1fr; }
  .case-card--highlight { grid-column: auto; }
  .roi-inputs { padding: 20px 18px 24px; }
  .roi-results { padding: 20px 18px 24px; }
  .roi-header { padding: 24px 18px 0; }
  .roi-disclaimer { padding: 14px 18px; }
}
@media (max-width: 480px) {
  .heading-lg { font-size: 24px; }
  .hero-name { font-size: 36px; }
  .hero-stats-inner { gap: 12px; }
  .h-stat-num { font-size: 22px; }
  .contact-form { padding: 24px 18px; }
  .modal-details { grid-template-columns: 1fr 1fr; }
}
