/* =========================================
   ARSALAN PROPERTIES — TRUST SITE CSS v4.2
   Fonts: Cormorant Garamond + DM Sans
   ========================================= */

/* ---------- TOKENS ---------- */
:root {
  /* MIDNIGHT EMERALD LUXURY PALETTE */
  --navy:    #1A1A1A;           /* deep emerald (primary) */
  --navy-80: rgba(13,59,50,0.32);
  --emerald-dark: #082621;
  --emerald-light: #165447;
  --gold:    #B8935A;           /* brushed brass */
  --gold-lt: #E0B45F;
  --white:   #ffffff;
  --light:   #FAFAF7;           /* warm cream */
  --cream:   #F1EEE8;
  --text:    #1A1A1A;
  --muted:   #6B7062;
  --border:  #E8E5DE;
  --green:   #25D366;           /* keep WhatsApp green */

  --font-head: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1200px;
  --radius: 6px;
  --shadow: 0 2px 20px rgba(13,59,50,0.08);
  --shadow-lg: 0 8px 40px rgba(13,59,50,0.15);
  --transition: 0.22s ease;
}

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

/* ---------- UTILS ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-light { background: var(--light); }
.section-dark  { background: var(--navy); color: var(--white); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-label  {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { flex-shrink: 0; }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); }

.btn-outline-white {
  border: 1.5px solid rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.9); }

.btn-outline-navy {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-wa {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.btn-wa:hover { background: #20b558; border-color: #20b558; transform: translateY(-1px); }

.btn-dubizzle {
  background: #1A1A1A;
  color: var(--white);
  border: 2px solid #1A1A1A;
}
.btn-dubizzle:hover { background: #0a3d87; border-color: #0a3d87; transform: translateY(-1px); }


/* =========================================
   HEADER
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.site-header.hidden {
  transform: translateY(-100%);
}

/* Mobile header: logo centered, hamburger absolute right */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;  /* center logo */
  height: 68px;
  padding: 0 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
}
/* Hamburger pinned to the right on mobile */
.hamburger {
  position: absolute;
  right: 20px;
}

.site-logo img { height: 102px; width: auto; }

/* Desktop nav + actions hidden on mobile */
.main-nav      { display: none; }
.header-actions { display: none; }
.header-rera   { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition);
}


/* =========================================
   MOBILE MENU
   ========================================= */
.mobile-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-overlay.visible { opacity: 1; pointer-events: all; }

.mobile-menu {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 82vw);
  background: var(--navy);
  z-index: 1002;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); pointer-events: all; }
body.menu-open { overflow: hidden; }

.mobile-close {
  align-self: flex-end;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  line-height: 1;
  padding: 4px 8px;
  margin-bottom: 28px;
}
.mobile-menu-nav { display: flex; flex-direction: column; gap: 2px; margin-bottom: auto; }
.mobile-menu-nav a {
  display: block;
  padding: 13px 0;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.mobile-menu-nav a:hover { color: var(--gold); }
.mobile-menu-footer {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 24px;
}
.mobile-menu-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.mobile-menu-footer a svg { color: var(--gold); flex-shrink: 0; }
.mobile-menu-rera {
  margin-top: 14px;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}


/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  background-size: cover;
  background-position: center 35%;
  padding-top: 68px;
}
.hero::after { content: none; }
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px 20px 60px;
  text-align: center;
}
.hero-rera-badge { margin-left: auto; margin-right: auto; }
.hero-title      { margin-left: auto; margin-right: auto; }
.hero-subtitle   { margin-left: auto; margin-right: auto; }
.hero-ctas       { justify-content: center; }

.hero-rera-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(11,31,58,0.75); border: 1px solid rgba(201,168,76,0.55); color: #F5D784; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 9px 16px 9px 12px; border-radius: 100px; margin-bottom: 26px; backdrop-filter: blur(8px); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.hero-rera-badge .badge-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  background: var(--gold);
  border-radius: 50%;
  color: var(--navy);
}
.hero-rera-badge .badge-check svg { width: 10px; height: 10px; }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 38px;
  max-width: 500px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================
   PROOF STRIP
   ========================================= */
.proof-strip {
  background: var(--navy);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.proof-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 28px;
  text-align: center;
  flex: 1 1 140px;
  max-width: 230px;
  position: relative;
}
.proof-item + .proof-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: rgba(255,255,255,0.12);
}
.proof-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.01em;
}
.proof-label {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 5px;
  font-weight: 500;
}


/* =========================================
   WHY TRUST US
   ========================================= */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
}
.trust-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 0 0 var(--radius) var(--radius);
}
.trust-card:hover::after { transform: scaleX(1); }
.trust-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.trust-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  color: var(--gold);
  margin-bottom: 18px;
}
.trust-heading {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.trust-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
}


/* =========================================
   TEAM
   ========================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.team-card {
  text-align: center;
  padding: 28px 16px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(201,168,76,0.3);
}
.team-photo-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2px solid var(--gold);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.team-initials {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--gold);
}
.team-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}
.team-founder-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  margin-top: 7px;
}


/* =========================================
   PROPERTIES
   ========================================= */
.props-section { background: var(--light); }
.props-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }

.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.prop-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(201,168,76,0.2); }

.prop-image-wrap { position: relative; }
.prop-image { aspect-ratio: 16/10; overflow: hidden; background: var(--navy); }
.prop-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.prop-card:hover .prop-image img { transform: scale(1.04); }
.prop-image-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.15); }
.prop-image-placeholder svg { width: 48px; height: 48px; }

.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.prop-details { padding: 22px 20px; }
.prop-price {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.prop-title { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 7px; }
.prop-location { font-size: 13px; color: var(--muted); margin-bottom: 14px; display: flex; align-items: center; gap: 5px; font-weight: 300; }
.prop-location svg { color: var(--gold); flex-shrink: 0; }
.prop-meta { display: flex; gap: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.prop-meta-item { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 4px; font-weight: 400; }

.props-cta { text-align: center; }


/* =========================================
   REVIEWS
   ========================================= */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  transition: box-shadow var(--transition);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 72px;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
}
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 13px; }
.review-text {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 400;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.review-location { font-size: 12px; color: var(--muted); margin-top: 1px; font-weight: 300; }


/* =========================================
   DEVELOPER LOGOS
   ========================================= */
.dev-section { background: var(--white); }
.dev-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 28px; }
.dev-logo-item { flex: 0 0 auto; width: 260px; height: 150px; display: flex; align-items: center; justify-content: center; padding: 20px 28px; border: 1px solid var(--border); border-radius: 8px; background: var(--white); transition: all 0.3s ease; }
.dev-logo-item:hover {
  border-color: var(--gold);
  box-shadow: 0 2px 16px rgba(201,168,76,0.12);
}
.dev-logo-item img { max-width: 220px !important; max-height: 110px !important; width: auto !important; height: auto !important; object-fit: contain !important; filter: none !important; opacity: 1 !important; transform: none !important; transition: transform 0.3s ease !important; }
.dev-logo-item:hover img { filter: none; opacity: 1; transform: scale(1.04); }


/* =========================================
   CONTACT
   ========================================= */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
}
.contact-form-title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.contact-form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  font-weight: 300;
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
  font-weight: 300;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.form-submit-btn:hover { background: #14335e; }

/* Contact info */
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info-title {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.contact-info-sub { font-size: 15px; color: rgba(255,255,255,0.65); font-weight: 300; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-text strong { display: block; color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.contact-detail-text span { color: rgba(255,255,255,0.6); font-size: 14px; font-weight: 300; }
.contact-detail-text a { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 400; transition: color var(--transition); }
.contact-detail-text a:hover { color: var(--gold); }

.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: 3px;
  margin-top: 4px;
  transition: all var(--transition);
  width: fit-content;
}
.contact-wa-btn:hover { background: #20b558; transform: translateY(-2px); }

.contact-rera-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  margin-top: 4px;
}
.contact-rera-strip svg { color: var(--gold); flex-shrink: 0; }
.contact-rera-strip span { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 400; letter-spacing: 0.02em; }
.contact-rera-strip strong { color: var(--gold); }


/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: #071526;
  color: rgba(255,255,255,0.6);
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand img { height: 130px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.45); max-width: 280px; font-weight: 300; }
.footer-rera {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.footer-rera svg { color: var(--gold); }

.footer-nav-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--transition); font-weight: 300; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-items { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 300; }
.footer-contact-item a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px; text-align: center; font-size: 12px; color: rgba(255,255,255,0.28); font-weight: 300; }


/* =========================================
   FLOATING WHATSAPP (DESKTOP ONLY)
   ========================================= */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 900;
  display: none;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  transition: all var(--transition);
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(37,211,102,0.45); }


/* =========================================
   MOBILE STICKY CTA BAR
   ========================================= */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  display: flex;
  height: 54px;
  background: var(--white);
  box-shadow: 0 -1px 0 var(--border), 0 -4px 16px rgba(0,0,0,0.1);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.mobile-cta-call { background: var(--navy); color: var(--white); }
.mobile-cta-wa   { background: var(--green); color: var(--white); }
.mobile-cta-bar svg { width: 18px; height: 18px; }

body { padding-bottom: 54px; }


/* =========================================
   PROPERTY CARD — TEXT-FIRST DESIGN
   ========================================= */
.prop-card-top {
  background: var(--navy);
  height: 6px;
  position: relative;
}
.prop-card-top .prop-badge {
  position: absolute;
  top: 10px;
  left: 16px;
}
.prop-specs {
  display: flex;
  gap: 0;
  margin: 16px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.prop-spec {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  border-right: 1px solid var(--border);
}
.prop-spec:last-child { border-right: none; }
.spec-num {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.spec-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-top: 3px;
  font-weight: 500;
}
.prop-developer {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}
.prop-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  gap: 8px;
}
.prop-dubizzle-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.prop-dubizzle-link:hover { gap: 10px; }
.prop-dubizzle-link svg { width: 14px; height: 14px; }
.prop-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--green);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.prop-wa-link:hover { background: #20b558; }
.prop-wa-link svg { width: 14px; height: 14px; }

.props-cta {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.about-hero {
  background: var(--navy);
  padding-top: 68px; /* header */
  position: relative;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #162d52 100%);
}
.about-hero .container { position: relative; z-index: 1; }
.about-hero-inner {
  padding: 64px 0 52px;
  max-width: 680px;
}
.about-hero-title {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0 18px;
  letter-spacing: -0.01em;
}
.about-hero-title em { font-style: italic; color: var(--gold); }
.about-hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
  max-width: 560px;
}
.about-hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }
.about-hero-rera {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.1);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 14px 20px;
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}
.about-hero-rera svg { width: 16px; height: 16px; }

/* About story */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.about-story-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 300;
}
.about-story-text .section-title { margin-bottom: 20px; }
.about-story-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-stat { display: flex; flex-direction: column; }
.about-stat-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.about-stat-lbl {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  font-weight: 500;
}

/* RERA card */
.about-rera-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
}
.rera-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.rera-card-badge {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.rera-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  margin-bottom: 3px;
}
.rera-card-num {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
}
.rera-card-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }
.rera-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.rera-card-row:last-child { border-bottom: none; }
.rera-card-row span { color: rgba(255,255,255,0.5); }
.rera-card-row strong { color: var(--white); font-weight: 500; }

/* About team — bigger, richer cards */
.about-team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.about-team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.about-team-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-2px);
}
.about-team-card--founder {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, #fdfbf5 0%, #fff 60%);
}
.about-team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-team-photo--lg {
  width: 100px;
  height: 100px;
  border-width: 3px;
}
.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-team-info { flex: 1; }
.about-team-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 10px;
}

/* =========================================
   SCROLL ANIMATIONS
   ========================================= */



.trust-grid .trust-card:nth-child(1) { transition-delay: 0.04s; }
.trust-grid .trust-card:nth-child(2) { transition-delay: 0.10s; }
.trust-grid .trust-card:nth-child(3) { transition-delay: 0.16s; }
.trust-grid .trust-card:nth-child(4) { transition-delay: 0.22s; }
.team-grid  .team-card:nth-child(1)  { transition-delay: 0.04s; }
.team-grid  .team-card:nth-child(2)  { transition-delay: 0.08s; }
.team-grid  .team-card:nth-child(3)  { transition-delay: 0.12s; }
.team-grid  .team-card:nth-child(4)  { transition-delay: 0.16s; }
.team-grid  .team-card:nth-child(5)  { transition-delay: 0.20s; }
.team-grid  .team-card:nth-child(6)  { transition-delay: 0.24s; }


/* =========================================
   RESPONSIVE — TABLET ≥ 640px
   ========================================= */
@media (min-width: 640px) {
  .trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .props-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-grid     { grid-template-columns: repeat(3, 1fr); }
  .form-row      { grid-template-columns: repeat(2, 1fr); }
}


/* =========================================
   RESPONSIVE — DESKTOP ≥ 1024px
   ========================================= */
@media (min-width: 1024px) {

  /* Header: 3-column grid — nav | LOGO CENTER | actions */
  .hamburger { display: none; }
  .main-nav  { display: block; }
  .header-actions { display: flex; align-items: center; gap: 18px; }
  .header-rera  { display: block; }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
  }
  .main-nav {
    grid-column: 1;
    justify-self: start;
  }
  .site-logo {
    grid-column: 2;
    justify-self: center;
  }
  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .main-nav ul { display: flex; gap: 2px; }
  .main-nav a {
    display: block;
    padding: 7px 13px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.75);
    border-radius: 3px;
    transition: all var(--transition);
    text-transform: uppercase;
  }
  .main-nav a:hover, .main-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,0.07);
  }

  .header-rera {
    font-family: var(--font-body);
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    font-weight: 500;
  }
  .header-phone {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
    transition: color var(--transition);
  }
  .header-phone:hover { color: var(--gold); }
  .header-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 15px;
    border-radius: 3px;
    transition: background var(--transition);
  }
  .header-wa-btn:hover { background: #20b558; }

  /* Desktop: hide mobile overlays */
  .mobile-menu, .mobile-overlay { display: none !important; }

  /* Hero */
  .hero-content { padding: 60px 20px; max-width: var(--max-w); margin: 0 auto; }

  /* About page desktop */
  .about-story-grid { grid-template-columns: 3fr 2fr; gap: 64px; }
  .about-team-grid  { grid-template-columns: repeat(2, 1fr); }
  .about-team-card  { flex-direction: row; }
  .about-team-card--founder { grid-column: 1 / -1; }
  .about-team-card--founder .about-team-photo { width: 120px; height: 120px; }

  /* Grids */
  .trust-grid    { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(3, 1fr); }
  .props-grid    { grid-template-columns: repeat(3, 1fr); }
  .team-grid     { grid-template-columns: repeat(3, 1fr); }
  .contact-grid  { grid-template-columns: 1fr 1fr; align-items: start; }
  .footer-inner  { grid-template-columns: 2fr 1fr 1fr; }

  /* Desktop WA float, no mobile bar */
  .float-wa { display: flex; }
  .mobile-cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* =========================================
   PROPERTY FILTER TABS
   ========================================= */
.prop-filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.prop-tab {
  padding: 10px 22px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  transition: all var(--transition);
}
.prop-tab:hover { border-color: var(--navy); color: var(--navy); }
.prop-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* =========================================
   ANIMATED PROPERTY CARDS
   ========================================= */
.prop-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.prop-visual-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.prop-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image */
.pvc-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pvc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.prop-visual-card:hover .pvc-image img {
  transform: scale(1.07);
}
.pvc-no-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A1A, #162d52);
  color: rgba(255,255,255,0.2);
}

/* Permanent dark gradient at bottom */
.prop-visual-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.4) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Type badge */
.pvc-type-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

/* SOLD ribbon */
.pvc-sold-ribbon {
  position: absolute;
  top: 18px;
  right: -28px;
  z-index: 4;
  background: #e53e3e;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 6px 44px;
  transform: rotate(45deg);
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(229,62,62,0.5);
}
.prop-sold .pvc-image img {
  filter: grayscale(50%) brightness(0.8);
}

/* Always-visible bottom info */
.pvc-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 16px 18px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.prop-visual-card:hover .pvc-bottom {
  opacity: 0;
  transform: translateY(10px);
}
.pvc-price {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.pvc-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pvc-location {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 300;
}
.pvc-location svg { width: 12px; height: 12px; color: var(--gold); flex-shrink: 0; }

/* Hover overlay — slides up */
.pvc-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(to top, rgba(11,31,58,0.98) 0%, rgba(11,31,58,0.32) 100%);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.prop-visual-card:hover .pvc-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.pvc-ov-price {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.pvc-ov-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.pvc-ov-location {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  font-weight: 300;
}
.pvc-ov-location svg { width: 12px; height: 12px; color: var(--gold); flex-shrink: 0; }
.pvc-ov-dev {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.pvc-specs {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.pvc-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.pvc-spec strong {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
}
.pvc-spec span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.pvc-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pvc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.pvc-btn svg { width: 14px; height: 14px; }
.pvc-btn-dubizzle { background: #1A1A1A; color: var(--white); }
.pvc-btn-dubizzle:hover { background: #0a3d87; }
.pvc-btn-wa { background: var(--green); color: var(--white); }
.pvc-btn-wa:hover { background: #20b558; }
.pvc-sold-note {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.5;
}

/* Responsive grid */
@media (min-width: 640px) {
  .prop-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .prop-cards-grid { grid-template-columns: repeat(3, 1fr); }
  .prop-visual-card { aspect-ratio: 3/4; }
}


/* =========================================
   ARSALAN PROPERTIES — ANIMATIONS v5
   ========================================= */

/* ── Fade-up: improved with will-change ─── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero background Ken Burns ────────────── */
.hero {
  overflow: hidden;
}
.hero-bg-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
  filter: brightness(1) saturate(1.12) contrast(1.03) !important;
  transform: none !important;
  margin: 0 !important;
}

}
.hero::after { content: none; }
.hero-content { position: relative; z-index: 2; }

/* Floating gold dust particles on hero */
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(8,38,33,0.55) 0%, rgba(8,38,33,0.25) 30%, rgba(8,38,33,0.5) 70%, rgba(8,38,33,0.9) 100%); z-index: 1; pointer-events: none; }

/* ── Hero text entrance ───────────────────── */
.hero-rera-badge {
  animation: fadeSlideDown 0.7s ease 0.2s both;
}
.hero-title {
  animation: fadeSlideUp 0.8s ease 0.35s both;
}
.hero-subtitle {
  animation: fadeSlideUp 0.8s ease 0.5s both;
}
.hero-ctas {
  animation: fadeSlideUp 0.8s ease 0.65s both;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 3-button hero CTAs ───────────────────── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ── Section label animated underline ────── */
.section-label {
  position: relative;
}
.section-label::after {
  content: '';
  display: block;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  margin: 5px auto 0;
  transition: width 0.6s ease 0.3s;
}
.fade-up.visible ~ .section-header .section-label::after,
.section-header .section-label::after {
  width: 48px;
}

/* ── Trust cards hover lift ───────────────── */
.trust-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(11,31,58,0.12);
}

/* ── Review cards hover ───────────────────── */
.review-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(11,31,58,0.1);
}

/* ── Team cards hover ─────────────────────── */
.team-card {
  transition: transform 0.3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
}

/* ── Proof strip counter ──────────────────── */
.proof-strip {
  position: relative;
  overflow: hidden;
}
.proof-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: shimmerLine 3s ease-in-out infinite;
}
@keyframes shimmerLine {
  0%   { opacity: 0.3; transform: scaleX(0.4); }
  50%  { opacity: 1;   transform: scaleX(1); }
  100% { opacity: 0.3; transform: scaleX(0.4); }
}

.proof-num {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* ── Gold shimmer on buttons ──────────────── */
.btn-gold, .btn-dubizzle, .btn-wa {
  position: relative;
  overflow: hidden;
}
.btn-gold::before, .btn-dubizzle::before, .btn-wa::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-gold:hover::before, .btn-dubizzle:hover::before, .btn-wa:hover::before {
  left: 150%;
}

/* ── Dev logo hover glow ──────────────────── */
.dev-logo-item {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.dev-logo-item:hover {
  transform: scale(1.06);
  filter: brightness(1.1);
}

/* ── Section entry animation ──────────────── */
@keyframes sectionReveal {
  from { clip-path: inset(0 0 100% 0); }
  to   { clip-path: inset(0 0 0% 0); }
}


/* =========================================
   HERO BUTTONS — PREMIUM REDESIGN v6
   ========================================= */

/* Override hero CTA layout */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 8px;
}

/* All hero buttons — refined base */
.hero-ctas .btn {
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid transparent;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* WhatsApp — sleek green with glass */
.hero-ctas .btn-wa {
  background: rgba(37, 211, 102, 0.9);
  color: #fff;
  border-color: rgba(37, 211, 102, 0.4);
}
.hero-ctas .btn-wa:hover {
  background: #25D366;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* Our Properties — elegant white/glass */
.hero-ctas .btn-gold {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
}
.hero-ctas .btn-gold:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.12);
  color: #fff;
}

/* Dubizzle — subtle blue glass */
.hero-ctas .btn-outline-white {
  background: rgba(11, 76, 163, 0.15);
  color: #fff;
  border-color: rgba(11, 76, 163, 0.45);
  backdrop-filter: blur(8px);
}
.hero-ctas .btn-outline-white:hover {
  background: rgba(11, 76, 163, 0.85);
  border-color: rgba(11, 76, 163, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(11, 76, 163, 0.3);
}

/* SVG icons inside hero buttons */
.hero-ctas .btn svg {
  width: 18px;
  height: 18px;
}

/* ── Properties section CTAs ──────────────── */
.props-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 48px;
}
.props-cta .btn {
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.props-cta .btn:hover {
  transform: translateY(-2px);
}

/* ── Mobile responsive ──────────────────── */
@media (max-width: 640px) {
  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 14px 24px;
    font-size: 12px;
  }
}

/* ── Filter tabs on properties page ─── */
.prop-filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.prop-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--muted);
  background: var(--white);
  transition: all 0.25s ease;
}
.prop-tab:hover { border-color: var(--navy); color: var(--navy); }
.prop-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(11,31,58,0.2);
}

/* ── Floating WhatsApp button polish ────── */
.float-wa {
  border-radius: 50px !important;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4) !important;
}


/* Mobile header logo */
@media (max-width: 768px) { .site-logo img { height: 72px; } .footer-brand img { height: 90px; } }


/* HERO TEXT READABILITY — v2 */
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, rgba(8,38,33,0.55) 0%, rgba(8,38,33,0.25) 30%, rgba(8,38,33,0.5) 70%, rgba(8,38,33,0.9) 100%); z-index: 1; pointer-events: none; }
.hero-title {
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}
.hero-subtitle {
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.95) !important;
}
.hero-rera-badge {
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ARSALAN — GLOBAL IMG OVERRIDES v2 */
.hero-bg-img, .dev-logo-item img, .site-logo img, .footer-brand img, .prop-card img, .team-photo, .neighbourhood-card img {
  filter: none !important;
  transform: none !important;
}
.hero-bg-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
  filter: brightness(1) saturate(1.12) contrast(1.03) !important;
  transform: none !important;
  margin: 0 !important;
}




/* ARSALAN PREMIUM REBRAND v1 — Charcoal / Cream / Brass */
:root {
  --navy:       #1A1A1A;   /* primary dark (charcoal) */
  --navy-dark:  #0F0F0F;
  --navy-soft:  #2A2A2A;
  --gold:       #B8935A;   /* champagne brass */
  --gold-dark:  #9C7A42;
  --gold-soft:  #D4B684;
  --cream:      #FAFAF7;   /* warm off-white body bg */
  --light:      #F7F5F0;   /* section alt bg */
  --white:      #FFFFFF;
  --text:       #1A1A1A;
  --muted:      #6B6B6B;
  --border:     #E8E5DE;
  --shadow:     0 4px 24px rgba(26, 26, 26, 0.08);
  --shadow-lg:  0 12px 48px rgba(26, 26, 26, 0.12);
}
html, body { background: var(--cream); color: var(--text); }

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
  background: var(--navy) !important;
  padding: 22px 0 !important;
  min-height: 120px !important;
  border-bottom: 1px solid rgba(184, 147, 90, 0.2) !important;
}
.site-header .container,
.site-header .nav-wrap,
.site-header nav {
  align-items: center !important;
}
.site-logo {
  display: flex !important;
  align-items: center !important;
}
.site-logo img {
  height: 76px !important;
  width: auto !important;
  max-height: 76px !important;
  display: block !important;
}
.site-header a,
.site-header .nav-link,
.site-header nav a {
  color: #FFFFFF !important;
  font-size: 13px !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}
.site-header a:hover { color: var(--gold) !important; }
.site-header .btn-wa,
.site-header a.btn-wa {
  background: var(--gold) !important;
  color: #1A1A1A !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
}
.site-header .btn-wa:hover { background: var(--gold-soft) !important; color: #1A1A1A !important; }
.rera-badge, .site-header .rera {
  color: rgba(255,255,255,0.75) !important;
  font-size: 11px !important;
  letter-spacing: 0.1em !important;
}

/* ── HERO ──────────────────────────────────────────── */
.hero-bg-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
  filter: brightness(0.85) saturate(1.05) contrast(1.02) !important;
  transform: none !important;
  margin: 0 !important;
}
.hero-overlay, .hero::before, .hero::after {
  background: linear-gradient(180deg, rgba(15,15,15,0.35) 0%, rgba(15,15,15,0.55) 60%, rgba(15,15,15,0.75) 100%) !important;
}
.hero h1, .hero .hero-title { color: #FFFFFF !important; }
.hero h1 em, .hero-title em { color: var(--gold-soft) !important; font-style: italic !important; }
.hero p, .hero .hero-sub { color: rgba(255,255,255,0.92) !important; }

/* ── BUTTONS (unified) ─────────────────────────────── */
.btn {
  border-radius: 50px !important;
  padding: 14px 30px !important;
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
  border: 1.5px solid transparent !important;
}
.btn-gold,
.btn-primary {
  background: var(--gold) !important;
  color: #1A1A1A !important;
  border-color: var(--gold) !important;
}
.btn-gold:hover, .btn-primary:hover {
  background: var(--gold-dark) !important;
  color: #FFFFFF !important;
  border-color: var(--gold-dark) !important;
  transform: translateY(-2px);
}
.btn-wa {
  background: #25D366 !important;
  color: #FFFFFF !important;
}
.btn-wa:hover { background: #1FB855 !important; transform: translateY(-2px); }
.btn-outline-white {
  background: rgba(255,255,255,0.08) !important;
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,0.5) !important;
  backdrop-filter: blur(10px) !important;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.2) !important;
  border-color: #FFFFFF !important;
}

/* ── SECTIONS ─────────────────────────────────────── */
section { background: var(--cream); }
section.alt, .section-alt, .bg-light { background: var(--light) !important; }
section h2, .section-title {
  color: var(--navy) !important;
  font-family: 'Playfair Display', serif !important;
}
section h2 em, .section-title em { color: var(--gold) !important; font-style: italic !important; }

/* ── FOOTER — MUST match header ─────────────────── */
.site-footer, footer, .footer {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.8) !important;
  border-top: 3px solid var(--gold) !important;
}
.site-footer *, footer *, .footer * {
  border-color: rgba(255,255,255,0.1) !important;
}
.site-footer h3, .site-footer h4, footer h3, footer h4 {
  color: #FFFFFF !important;
  font-family: 'Playfair Display', serif !important;
}
.site-footer a, footer a { color: rgba(255,255,255,0.75) !important; }
.site-footer a:hover, footer a:hover { color: var(--gold) !important; }
.footer-brand img {
  height: 110px !important;
  width: auto !important;
  margin-bottom: 20px !important;
  filter: brightness(1.1) !important;
}
.footer-bottom, .site-footer .copy {
  background: #0F0F0F !important;
  color: rgba(255,255,255,0.5) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}

/* ── PROPERTY CARDS ─────────────────────────────── */
.prop-card {
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  box-shadow: var(--shadow) !important;
  overflow: hidden !important;
}
.prop-card:hover { box-shadow: var(--shadow-lg) !important; transform: translateY(-4px); }
.prop-card .price { color: var(--navy) !important; }
.prop-card .price-highlight, .prop-card .tag { color: var(--gold) !important; }

/* ── DEVELOPER LOGOS (big + uniform) ──────────── */
.dev-logos {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 32px 40px !important;
  padding: 20px 0 !important;
}
.dev-logo-item {
  flex: 0 0 auto !important;
  width: 320px !important;
  height: 190px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #FFFFFF !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  padding: 26px 30px !important;
  box-shadow: var(--shadow) !important;
  transition: transform .3s ease, box-shadow .3s ease !important;
}
.dev-logo-item:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg) !important;
}
.dev-logo-item img {
  max-width: 260px !important;
  max-height: 130px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
  display: block !important;
}

/* ── FILTER TABS (properties page) ─────────── */
.prop-tab {
  background: #FFFFFF !important;
  color: var(--muted) !important;
  border: 1.5px solid var(--border) !important;
}
.prop-tab:hover { border-color: var(--navy) !important; color: var(--navy) !important; }
.prop-tab.active {
  background: var(--navy) !important;
  color: #FFFFFF !important;
  border-color: var(--navy) !important;
}

/* ── FLOATING WA BUTTON ─────────────────── */
.float-wa {
  background: #25D366 !important;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45) !important;
}

/* ── GLOBAL IMG PROTECTIONS ─────────────── */
.hero-bg-img, .dev-logo-item img, .site-logo img, .footer-brand img,
.prop-card img, .team-photo, .neighbourhood-card img {
  filter: none !important;
  transform: none !important;
}

/* ── MOBILE ─────────────────────────────── */
@media (max-width: 768px) {
  .site-header { min-height: 88px !important; padding: 14px 0 !important; }
  .site-logo img { height: 54px !important; max-height: 54px !important; }
  .dev-logo-item { width: 240px !important; height: 150px !important; padding: 18px 22px !important; }
  .dev-logo-item img { max-width: 200px !important; max-height: 100px !important; }
  .footer-brand img { height: 80px !important; }
}
/* END PREMIUM REBRAND */

/* ARSALAN PHASE1B CSS — mobile + single-property + off-plan */

/* Mobile: hide RERA badge + phone in header, keep logo + nav + WhatsApp only */
@media (max-width: 768px) {
  .site-header .header-right .rera-badge,
  .site-header .header-right .header-phone,
  .site-header .rera,
  .site-header .phone { display: none !important; }
  .site-header { padding: 10px 0 !important; min-height: 72px !important; }
  .site-logo img { height: 46px !important; max-height: 46px !important; }
  .site-header nav a,
  .site-header .nav-link { font-size: 11px !important; letter-spacing: 0.08em !important; }
  .site-header .btn-wa { padding: 8px 14px !important; font-size: 11px !important; }
}

/* Off-Plan page: EMAAR + developer logos sized consistently */
.offplan-developer-logo,
.page-id-619 .wp-block-image img,
.page-id-619 img[src*="emaar" i],
.page-id-619 img[src*="damac" i],
.page-id-619 img[src*="nakheel" i] {
  max-width: 220px !important;
  max-height: 120px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 24px 0 !important;
  filter: none !important;
}

/* Single property page — premium detail layout */
.single-property .prop-hero {
  margin-bottom: 40px;
}
.single-property .prop-gallery-main img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
  object-fit: cover;
  max-height: 560px;
}
.single-property .prop-price {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.single-property .prop-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--navy);
  margin: 4px 0 16px;
}
.single-property .prop-location {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}
.single-property .prop-location::before {
  content: "📍 ";
  filter: grayscale(1);
}
.single-property .prop-specs {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  margin: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.single-property .prop-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 100px;
}
.single-property .prop-spec .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
}
.single-property .prop-spec .value {
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.single-property .prop-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.single-property .prop-developer {
  background: var(--light);
  padding: 16px 20px;
  border-radius: 10px;
  border-left: 3px solid var(--gold);
  margin: 24px 0;
}
.single-property .prop-developer .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.single-property .prop-developer .value {
  font-size: 18px;
  color: var(--navy);
  font-weight: 600;
}

/* Error 404 */
.error-404 .btn { display: inline-flex; align-items: center; }

/* Our Team: proper grid on desktop */
.team-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 32px !important;
  margin: 40px 0 !important;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: 1fr !important; }
}
.team-card {
  text-align: center;
  background: var(--white);
  padding: 28px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.team-card .team-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
}
.team-card .name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 4px;
}
.team-card .role {
  font-size: 13px;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Market Insights blog posts grid */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 40px 0;
}
@media (max-width: 900px) { .insights-grid { grid-template-columns: 1fr; } }
.insight-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.insight-card-body { padding: 24px 28px; }
.insight-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 12px;
}
.insight-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.insight-card a.read-more {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}
.insight-card a.read-more:hover { color: var(--navy); }

/* END PHASE1B CSS */

/* ARSALAN OFFPLAN IMG FIX */
.page-id-619 .entry-content img,
.page-id-619 article img,
.page-id-619 main img,
body.page-id-619 .wp-block-image img {
  max-width: 240px !important;
  max-height: 120px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 20px 24px 20px 0 !important;
  display: inline-block !important;
  vertical-align: middle !important;
}
.page-id-619 .entry-content > p,
.page-id-619 article > p {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
/* END OFFPLAN IMG */

/* Latest Posts block styling */
.wp-block-latest-posts.insights-grid,
.insights-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 32px 0 !important;
}
.wp-block-latest-posts.insights-grid > li,
.insights-grid > li {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  border-radius: 14px !important;
  padding: 24px !important;
  box-shadow: var(--shadow) !important;
  transition: transform .3s ease, box-shadow .3s ease !important;
  list-style: none !important;
}
.wp-block-latest-posts.insights-grid > li:hover {
  transform: translateY(-4px) !important;
  box-shadow: var(--shadow-lg) !important;
}
.wp-block-latest-posts.insights-grid a {
  color: var(--navy) !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 19px !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: block !important;
  margin-bottom: 8px !important;
}
.wp-block-latest-posts.insights-grid a:hover { color: var(--gold-dark) !important; }
.wp-block-latest-posts.insights-grid .wp-block-latest-posts__post-date {
  color: var(--muted) !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  display: block !important;
  margin: 8px 0 !important;
}
.wp-block-latest-posts.insights-grid .wp-block-latest-posts__post-excerpt,
.wp-block-latest-posts.insights-grid .wp-block-latest-posts__post-full-content {
  font-size: 14px !important;
  line-height: 1.6 !important;
  color: var(--text) !important;
  margin-top: 8px !important;
}
.wp-block-latest-posts.insights-grid .wp-block-latest-posts__featured-image {
  margin-bottom: 14px !important;
}
.wp-block-latest-posts.insights-grid .wp-block-latest-posts__featured-image img {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  border-radius: 10px !important;
  float: none !important;
  margin: 0 !important;
}
@media (max-width: 900px) {
  .wp-block-latest-posts.insights-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .wp-block-latest-posts.insights-grid { grid-template-columns: 1fr !important; }
}


/* OFFPLAN W500 — hit any 500×500 developer image */
.page-id-619 img[width="500"] {
  max-width: 220px !important;
  max-height: 100px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  margin: 12px 20px 12px 0 !important;
}
/* END OFFPLAN W500 */