@font-face { font-family: "Cairo"; src: url('../fonts/cairo-400.ttf') format('truetype'); font-style: normal; font-weight: 400; font-display: swap; }
@font-face { font-family: "Cairo"; src: url('../fonts/cairo-500.ttf') format('truetype'); font-style: normal; font-weight: 500; font-display: swap; }
@font-face { font-family: "Cairo"; src: url('../fonts/cairo-600.ttf') format('truetype'); font-style: normal; font-weight: 600; font-display: swap; }
@font-face { font-family: "Cairo"; src: url('../fonts/cairo-700.ttf') format('truetype'); font-style: normal; font-weight: 700; font-display: swap; }
@font-face { font-family: "Cairo"; src: url('../fonts/cairo-800.ttf') format('truetype'); font-style: normal; font-weight: 800; font-display: swap; }

:root {
  --gold: #c89535;
  --gold-2: #e7c579;
  --gold-dark: #9b681d;
  --forest: #084a45;
  --forest-deep: #052f2c;
  --forest-ink: #18221f;
  --ivory: #fbfaf6;
  --ink: #18221f;
  --ink-2: #26312e;
  --muted: #67726e;
  --line: #e1e7e3;
  --soft: #fbfaf6;
  --soft-blue: #f3f7f5;
  --white: #ffffff;
  --green: #1fbf5b;
  --danger: #bd2c2c;
  --shadow-sm: 0 5px 18px rgba(25, 27, 31, 0.07);
  --shadow-md: 0 15px 45px rgba(25, 27, 31, 0.10);
  --shadow-lg: 0 26px 70px rgba(25, 27, 31, 0.14);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Cairo", "Arial", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html[dir="ltr"] body { font-family: "Cairo", "Arial", sans-serif; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
svg { width: 20px; height: 20px; display: block; flex: 0 0 auto; }
.btn svg { width: 18px; height: 18px; }
.property-specs svg, .detail-spec svg { width: 15px; height: 15px; display: inline-block; vertical-align: -3px; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0eee9;
  background: #fff;
  position: relative;
  z-index: 50;
}
.site-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
}
.topbar-side { display: flex; align-items: center; gap: 18px; }
.topbar-link { display: inline-flex; align-items: center; gap: 7px; color: #333; font-weight: 700; }
.topbar-link.whatsapp { color: #111; }
.topbar-link.whatsapp svg { color: var(--green); }
.topbar-link:hover { color: var(--gold-dark); }
.language-toggle { border: 0; padding: 0; background: transparent; cursor: pointer; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,229,222,0.92);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; margin-inline-start: 0; flex: 0 0 auto; }
.brand img { width: 88px; height: 78px; object-fit: contain; }
.site-nav { display: flex; align-items: stretch; justify-content: center; gap: 30px; flex: 1; }
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 82px;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transition: .25s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--gold-dark); }
.site-nav a:hover::after, .site-nav a.active::after { left: 0; right: 0; }
.header-tools { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.icon-button {
  width: 43px;
  height: 43px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: .2s;
}
.icon-button:hover { border-color: var(--gold); color: var(--gold-dark); }
.mobile-menu-button { display: none; }

.mobile-drawer, .drawer-backdrop { display: none; }

/* Buttons */
.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #b77708 0%, #d59d25 54%, #b97b09 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(200,146,31,.24);
}
.btn-gold:hover { box-shadow: 0 14px 32px rgba(200,146,31,.35); }
.btn-outline { border-color: var(--gold); color: var(--gold-dark); background: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: rgba(255,255,255,.5); }
.btn-small { min-height: 40px; padding-inline: 16px; font-size: 13px; }

/* Hero */
.home-hero {
  position: relative;
  min-height: 515px;
  background:
    linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 31%, rgba(255,255,255,.70) 48%, rgba(255,255,255,.06) 72%),
    url('../images/doha-hero.webp') center 48% / cover no-repeat;
  overflow: visible;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 84px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
  pointer-events: none;
}
.hero-grid {
  min-height: 515px;
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: center;
  direction: ltr;
  position: relative;
  z-index: 2;
}
.hero-copy { direction: rtl; text-align: right; padding: 35px 0 110px; max-width: 520px; }
html[dir="ltr"] .hero-copy { direction: ltr; text-align: left; }
.hero-kicker { font-weight: 800; color: var(--gold-dark); margin-bottom: 6px; }
.hero-copy h1 { margin: 0; font-size: clamp(37px, 3.8vw, 50px); line-height: 1.17; letter-spacing: -.8px; }
.hero-copy h1 .gold-line { display: block; color: var(--gold); margin-top: 5px; }
.hero-copy .hero-subtitle { font-size: 21px; max-width: 510px; margin: 18px 0 6px; font-weight: 600; }
.hero-copy .hero-description { color: #4e545a; font-size: 17px; max-width: 490px; margin: 0 0 27px; }
.hero-blank { min-height: 1px; }
.hero-service-strip {
  position: absolute;
  z-index: 5;
  bottom: 58px;
  inset-inline-end: max(40px, calc((100vw - var(--container))/2 + 12px));
  width: min(520px, 48vw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.hero-service {
  min-height: 105px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-inline-start: 1px solid var(--line);
  font-weight: 800;
  text-align: center;
}
.hero-service:first-child { border-inline-start: 0; }
.hero-service svg { color: var(--gold); width: 29px; height: 29px; }
.hero-service:hover { background: #fffaf0; color: var(--gold-dark); }

/* Search */
.search-wrap { position: relative; z-index: 10; margin-top: -40px; }
.search-panel {
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px 17px;
  box-shadow: var(--shadow-md);
}
.search-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1.05fr 1fr 1.18fr 112px;
  gap: 12px;
  align-items: end;
}
.field label { display: block; font-size: 12px; font-weight: 800; margin-bottom: 6px; color: #363a3f; }
.field-control { position: relative; }
.field select, .field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: .2s;
}
.field select, .field input { height: 48px; padding: 0 13px; }
.field textarea { min-height: 130px; padding: 13px; resize: vertical; }
.field select:focus, .field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,146,31,.10); }
.search-submit { height: 48px; border: 0; }
.search-tools { margin-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.advanced-button, .text-button { border: 0; background: transparent; color: var(--gold-dark); font-weight: 800; cursor: pointer; padding: 0; display: inline-flex; align-items: center; gap: 6px; }
.search-hint { color: var(--muted); font-size: 12px; }

/* Generic sections */
.section { padding: 72px 0; }
.section.compact { padding: 54px 0; }
.section-soft { background: var(--soft); }
.section-blue { background: var(--soft-blue); }
.section-head { text-align: center; margin-bottom: 32px; }
.section-head.inline { display: flex; align-items: end; justify-content: space-between; text-align: start; gap: 20px; }
.section-head h2 { font-size: clamp(28px, 3vw, 39px); line-height: 1.25; margin: 0 0 7px; }
.section-head p { max-width: 670px; color: var(--muted); margin: 0 auto; }
.section-head.inline p { margin: 0; }
.gold-text { color: var(--gold-dark); }

/* Property cards */
.property-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.property-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: .25s ease;
  min-width: 0;
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.property-media { position: relative; height: 210px; overflow: hidden; background: #eef0f2; }
.property-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.property-card:hover .property-media img { transform: scale(1.045); }
.property-label { position: absolute; top: 10px; inset-inline-end: 10px; background: var(--gold); color: #fff; border-radius: 5px; padding: 4px 9px; font-size: 12px; font-weight: 800; }
.property-purpose { position: absolute; bottom: 0; inset-inline: 0; padding: 24px 12px 8px; color: #fff; background: linear-gradient(to top, rgba(0,0,0,.78), transparent); font-weight: 800; }
.favorite-button {
  position: absolute;
  top: 9px;
  inset-inline-start: 9px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.75);
  background: rgba(0,0,0,.16);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 3;
}
.favorite-button.active { background: #fff; color: var(--gold-dark); }
.property-body { padding: 15px 15px 17px; }
.property-body h3 { font-size: 17px; margin: 0 0 2px; line-height: 1.45; }
.property-location { color: var(--muted); font-size: 13px; }
.property-specs { display: flex; flex-wrap: wrap; gap: 14px; color: #4f555b; font-size: 12px; margin: 12px 0; }
.property-specs span { display: inline-flex; align-items: center; gap: 4px; }
.property-price { color: var(--gold-dark); font-size: 18px; font-weight: 900; }
.property-actions { display: flex; gap: 8px; margin-top: 12px; }
.property-actions .btn { flex: 1; min-height: 40px; padding-inline: 10px; font-size: 12px; }
.cards-scroll-actions { display: flex; justify-content: center; gap: 8px; margin-top: 18px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #dedede; border: 0; }
.dot.active { background: var(--gold); }

/* Markets */
.market-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.market-card {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  padding: 17px 14px;
  text-align: center;
  transition: .25s;
}
.market-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: #dec88f; }
.market-flag { width: 72px; height: 46px; margin: 0 auto 11px; border-radius: 3px; overflow: hidden; box-shadow: 0 2px 7px rgba(0,0,0,.12); display: grid; place-items: center; font-size: 40px; background: #fff; }
.market-card h3 { margin: 0 0 5px; font-size: 20px; }
.market-card a { color: var(--gold-dark); font-size: 13px; font-weight: 800; }

/* Why/services */
.feature-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.feature-item { padding: 18px 20px; text-align: center; border-inline-start: 1px solid var(--line); }
.feature-item:first-child { border-inline-start: 0; }
.feature-icon { width: 44px; height: 44px; margin: auto; display: grid; place-items: center; color: var(--gold); }
.feature-icon svg { width: 34px; height: 34px; }
.feature-item h3 { margin: 7px 0 3px; font-size: 16px; }
.feature-item p { margin: 0; color: var(--muted); font-size: 12px; }
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 17px; }
.service-card { border: 1px solid var(--line); border-radius: 12px; background: #fff; padding: 22px 15px; text-align: center; transition: .25s; }
.service-card:hover { border-color: #dac48b; transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.service-card svg { color: var(--gold); width: 34px; height: 34px; }
.service-card h3 { margin: 10px 0 4px; font-size: 16px; }
.service-card p { margin: 0; color: var(--muted); font-size: 12px; }

/* Stats */
.stats-band {
  background: linear-gradient(rgba(21,25,29,.93), rgba(21,25,29,.93)), url('../images/doha-hero.webp') center / cover;
  color: #fff;
}
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.stat-item { min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-inline-start: 1px solid rgba(255,255,255,.18); text-align: center; padding: 20px 10px; }
.stat-item:first-child { border-inline-start: 0; }
.stat-value { color: var(--gold-2); font-weight: 900; font-size: 37px; line-height: 1.1; direction: ltr; }
.stat-label { margin-top: 8px; font-size: 14px; }

/* Management split */
.management-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.management-collage { position: relative; min-height: 490px; }
.management-collage .main-img { position: absolute; inset: 0 12% 5% 0; width: 78%; height: 88%; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-md); }
html[dir="ltr"] .management-collage .main-img { inset: 0 0 5% 12%; }
.management-collage .small-img { position: absolute; width: 46%; height: 43%; object-fit: cover; bottom: 0; inset-inline-end: 0; border: 8px solid #fff; border-radius: 22px; box-shadow: var(--shadow-md); }
.management-metric { position: absolute; top: 58%; inset-inline-start: 2%; transform: translateY(-50%); padding: 20px 18px; background: rgba(255,255,255,.95); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); min-width: 150px; text-align: center; }
.management-metric strong { display: block; color: var(--gold-dark); font-size: 27px; }
.management-copy h2 { font-size: clamp(31px, 3.5vw, 46px); line-height: 1.25; margin: 0 0 13px; }
.management-copy h2 span { display: block; color: var(--gold); }
.management-copy p { color: var(--muted); font-size: 17px; }
.check-list { display: grid; gap: 10px; margin: 23px 0 28px; }
.check-item { display: flex; align-items: flex-start; gap: 9px; }
.check-item svg { color: var(--gold); flex: 0 0 auto; margin-top: 4px; }

/* CTA & Footer */
.cta-strip {
  position: relative;
  overflow: hidden;
  padding: 45px 0;
  background: linear-gradient(90deg, #fff, #fbf5e8 49%, #fff);
  border-block: 1px solid var(--line);
}
.cta-strip::before, .cta-strip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 290px;
  height: 145px;
  opacity: .18;
  background: url('../images/doha-hero.webp') center/cover no-repeat;
  filter: sepia(1) saturate(.7);
  clip-path: polygon(0 75%, 10% 66%, 17% 72%, 24% 45%, 32% 74%, 42% 52%, 52% 78%, 62% 37%, 69% 73%, 78% 57%, 88% 79%, 100% 64%, 100% 100%, 0 100%);
}
.cta-strip::before { left: 0; }
.cta-strip::after { right: 0; transform: scaleX(-1); }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-inner h2 { font-size: 31px; margin: 0 0 4px; }
.cta-inner p { margin: 0 0 18px; color: var(--muted); }
.cta-actions { display: flex; justify-content: center; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-phone { direction: ltr; font-size: 22px; font-weight: 800; display: inline-flex; align-items: center; gap: 8px; }
.cta-phone svg { color: var(--green); }

.site-footer { background: #fff; padding: 48px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1.15fr; gap: 44px; padding-bottom: 35px; }
.footer-brand img { width: 100px; height: 128px; object-fit: contain; margin-bottom: 12px; }
.footer-brand p { color: #4e5358; max-width: 290px; margin: 0; }
.footer-column h3 { font-size: 16px; margin: 0 0 13px; }
.footer-column a, .footer-column p { display: block; color: #555b61; margin: 7px 0; font-size: 14px; }
.footer-column a:hover { color: var(--gold-dark); }
.contact-line { display: flex !important; align-items: flex-start; gap: 8px; }
.contact-line svg { color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.footer-socials { display: flex; gap: 9px; margin-top: 16px; }
.footer-socials a { width: 35px; height: 35px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; margin: 0; }
.footer-bottom { border-top: 1px solid var(--line); min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #777d82; font-size: 12px; }
.footer-bottom-links { display: flex; gap: 18px; }

.whatsapp-float {
  position: fixed;
  inset-inline-start: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 13px 30px rgba(31,191,91,.33);
  transition: .2s;
}
.whatsapp-float:hover { transform: scale(1.06); }
.whatsapp-float svg { width: 30px; height: 30px; }
.mobile-bottom-nav { display: none; }

/* Page heroes */
.page-hero {
  min-height: 330px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.91) 44%, rgba(255,255,255,.15) 78%), var(--page-image, url('../images/doha-hero.webp')) center/cover no-repeat;
}
.page-hero-content { max-width: 620px; }
.page-hero h1 { margin: 0 0 9px; font-size: clamp(38px, 5vw, 58px); line-height: 1.15; }
.page-hero p { margin: 0; color: #4e545a; font-size: 18px; }
.breadcrumbs { color: var(--gold-dark); font-size: 13px; font-weight: 800; margin-bottom: 11px; }

/* Listing page */
.filter-toolbar { background: #fff; border: 1px solid var(--line); border-radius: 15px; padding: 18px; box-shadow: var(--shadow-sm); margin-bottom: 26px; }
.filter-toolbar .search-grid { grid-template-columns: repeat(5,1fr) 110px; }
.results-summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin: 25px 0 20px; }
.results-summary h2 { margin: 0; }
.results-count { color: var(--muted); }
.empty-state { grid-column: 1/-1; border: 1px dashed #d9c78f; background: #fffcf5; border-radius: 16px; padding: 36px; text-align: center; }
.empty-state h3 { margin: 0 0 6px; font-size: 25px; }
.empty-state p { color: var(--muted); }

/* Details */
.detail-layout { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(330px,.7fr); gap: 30px; align-items: start; }
.detail-gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 260px 260px; gap: 10px; border-radius: 18px; overflow: hidden; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; }
.detail-gallery img:first-child { grid-row: 1/3; }
.detail-card { border: 1px solid var(--line); border-radius: 18px; padding: 24px; position: sticky; top: 110px; box-shadow: var(--shadow-sm); }
.detail-card h1 { margin: 0 0 6px; font-size: 29px; }
.detail-price { color: var(--gold-dark); font-size: 27px; font-weight: 900; margin: 16px 0; }
.detail-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 11px; margin: 18px 0; }
.detail-spec { background: var(--soft); border-radius: 9px; padding: 11px; font-size: 13px; }
.detail-description { margin-top: 28px; }
.detail-description h2 { font-size: 27px; }

/* Content cards / country / business */
.content-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.content-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; }
.image-card { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; transition: .25s; }
.image-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.image-card img { width: 100%; height: 250px; object-fit: cover; }
.image-card-body { padding: 21px; }
.image-card-body h3 { margin: 0 0 6px; font-size: 22px; }
.image-card-body p { color: var(--muted); margin: 0 0 15px; }
.business-centres-section { overflow: hidden; background: linear-gradient(180deg, var(--ivory) 0%, #fff 100%); }
.business-showcase { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 30px; align-items: stretch; }
.business-card { min-width: 0; overflow: hidden; border: 1px solid rgba(8,74,69,.12); border-radius: 28px; background: #fff; box-shadow: 0 22px 56px rgba(7,44,40,.11); transition: transform .35s ease, box-shadow .35s ease; }
.business-card:hover { transform: translateY(-7px); box-shadow: 0 28px 72px rgba(7,44,40,.16); }
.business-card-media { position: relative; height: 360px; overflow: hidden; background: var(--forest); }
.business-card-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(4,29,27,.04) 42%,rgba(4,29,27,.7) 100%); pointer-events: none; }
.business-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,.61,.36,1); }
.business-card:hover .business-card-media img { transform: scale(1.035); }
.business-card-index { position: absolute; z-index: 1; top: 20px; inset-inline-start: 20px; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: #fff; background: rgba(5,38,35,.28); backdrop-filter: blur(10px); font-size: 12px; font-weight: 800; }
.business-card-location { position: absolute; z-index: 1; inset-inline-end: 22px; bottom: 20px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; color: #fff; background: rgba(5,38,35,.42); backdrop-filter: blur(10px); font-size: 11px; font-weight: 800; }
.business-card-body { display: flex; flex-direction: column; min-height: 330px; padding: 28px 30px 30px; }
.business-card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.business-card-kicker { display: block; margin-bottom: 7px; color: var(--gold-dark); font-size: 10px; font-weight: 900; letter-spacing: .08em; }
.business-card h3 { margin: 0; color: var(--forest-ink); font-size: 28px; line-height: 1.35; }
.business-card-mark { flex: 0 0 auto; color: rgba(8,74,69,.09); font-family: Georgia,serif; font-size: 46px; line-height: 1; }
.business-card-body > p { min-height: 58px; margin: 14px 0 18px; color: var(--muted); font-size: 13px; line-height: 1.9; }
.business-card-features { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.business-card-features span { padding: 7px 10px; border: 1px solid rgba(8,74,69,.12); border-radius: 999px; color: var(--forest); background: rgba(8,74,69,.045); font-size: 10px; font-weight: 800; }
.business-card .btn { align-self: flex-start; margin-top: auto; }
.business-card-lusail { border-top: 4px solid #0d726a; }
.business-card-doha { border-top: 4px solid var(--gold); }
.business-card-doha .business-card-media img { object-position: 50% 58%; }

/* International markets — four distinct investment identities */
.international-hero { position: relative; min-height: 620px; overflow: hidden; color: #fff; background: var(--forest-deep); isolation: isolate; }
.international-hero-mosaic { position: absolute; z-index: -3; inset: 0; display: grid; grid-template-columns: 1.15fr .85fr .85fr 1.15fr; gap: 2px; }
.international-hero-mosaic figure { margin: 0; overflow: hidden; }
.international-hero-mosaic figure:nth-child(2), .international-hero-mosaic figure:nth-child(4) { transform: translateY(34px); }
.international-hero-mosaic img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.04); }
.international-hero-shade { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg,rgba(4,29,27,.48) 0%,rgba(4,29,27,.74) 48%,rgba(4,29,27,.94) 100%); }
html[dir="ltr"] .international-hero-shade { background: linear-gradient(270deg,rgba(4,29,27,.48) 0%,rgba(4,29,27,.74) 48%,rgba(4,29,27,.94) 100%); }
.international-hero::after { content: 'IN'; position: absolute; z-index: -1; inset-inline-start: 3%; bottom: -115px; color: rgba(255,255,255,.055); font-family: Georgia,serif; font-size: 330px; line-height: 1; }
.international-hero-inner { display: flex; align-items: center; min-height: 620px; }
.international-hero-copy { width: min(690px,62%); margin-inline-start: auto; padding: 72px 0; }
html[dir="ltr"] .international-hero-copy { margin-inline-start: 0; margin-inline-end: auto; }
.international-hero .breadcrumbs { margin-bottom: 18px; color: var(--gold-2); font-size: 11px; font-weight: 800; }
.international-hero-kicker { display: block; margin-bottom: 12px; color: var(--gold-2); font-size: 12px; font-weight: 900; letter-spacing: .07em; }
.international-hero h1 { max-width: 650px; margin: 0; font-size: clamp(55px,6.5vw,92px); line-height: 1.02; letter-spacing: -.045em; }
.international-hero p { max-width: 620px; margin: 22px 0 28px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 2; }
.international-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.international-hero .btn-ghost { border-color: rgba(255,255,255,.46); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(9px); }
.international-hero .btn-ghost:hover { color: var(--forest); background: #fff; }
.international-hero-markets { display: flex; gap: 20px; margin-top: 34px; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.international-hero-markets span { position: relative; }
.international-hero-markets span:not(:last-child)::after { content: ''; position: absolute; top: 50%; inset-inline-end: -12px; width: 3px; height: 3px; border-radius: 50%; background: var(--gold-2); }
.international-markets-section { background: linear-gradient(180deg,#fff 0%,var(--ivory) 100%); }
.international-markets-section .section-head { max-width: 760px; }
.section-eyebrow { display: inline-block; margin-bottom: 8px; color: var(--gold-dark); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.international-market-grid { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); gap: 26px; align-items: start; }
.international-market-card { grid-column: span 6; min-width: 0; overflow: hidden; border: 1px solid rgba(8,74,69,.11); border-radius: 27px; background: #fff; box-shadow: 0 20px 50px rgba(8,45,40,.09); transition: transform .35s ease,box-shadow .35s ease; }
.international-market-card:hover { transform: translateY(-6px); box-shadow: 0 28px 65px rgba(8,45,40,.15); }
.international-market-card.market-uk,.international-market-card.market-bosnia { grid-column: span 7; }
.international-market-card.market-egypt,.international-market-card.market-turkiye { grid-column: span 5; }
.international-market-media { position: relative; height: 330px; overflow: hidden; background: var(--forest); }
.international-market-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg,rgba(4,29,27,.02) 45%,rgba(4,29,27,.72) 100%); pointer-events: none; }
.international-market-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.22,.61,.36,1); }
.international-market-card:hover .international-market-media img { transform: scale(1.04); }
.international-market-number { position: absolute; z-index: 1; top: 18px; inset-inline-start: 18px; color: #fff; font-size: 11px; font-weight: 900; }
.international-market-code { position: absolute; z-index: 1; inset-inline-end: 20px; bottom: 16px; color: #fff; font-family: Georgia,serif; font-size: 42px; line-height: 1; }
.international-market-body { position: relative; z-index: 2; min-height: 305px; margin: -30px 16px 16px; padding: 25px 25px 24px; border: 1px solid rgba(8,74,69,.08); border-radius: 20px; background: rgba(255,255,255,.97); box-shadow: 0 15px 36px rgba(8,45,40,.08); }
.international-market-label { color: var(--gold-dark); font-size: 9px; font-weight: 900; letter-spacing: .07em; }
.international-market-card h3 { margin: 5px 0 8px; color: var(--forest-ink); font-size: 31px; }
.international-market-card p { min-height: 53px; margin: 0 0 15px; color: var(--muted); font-size: 12px; line-height: 1.9; }
.international-market-cities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.international-market-cities span { padding: 6px 9px; border-radius: 999px; color: var(--forest); background: rgba(8,74,69,.06); font-size: 9px; font-weight: 800; }
.international-market-link { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 15px; border-top: 1px solid rgba(8,74,69,.1); color: var(--forest); font-size: 11px; font-weight: 900; }
.international-market-link b { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; color: #fff; background: var(--forest); font-size: 15px; transition: transform .2s ease; }
html[dir="ltr"] .international-market-link b { transform: rotate(180deg); }
.international-market-link:hover b { transform: translateX(-3px); }
html[dir="ltr"] .international-market-link:hover b { transform: rotate(180deg) translateX(-3px); }
.market-uk { border-top: 4px solid #697f94; }
.market-egypt { border-top: 4px solid #c79a45; }
.market-turkiye { border-top: 4px solid #9b6049; }
.market-bosnia { border-top: 4px solid #52765b; }
.info-card { border: 1px solid var(--line); border-radius: 15px; padding: 24px; background: #fff; }
.info-card svg { width: 35px; height: 35px; color: var(--gold); }
.info-card h3 { margin: 11px 0 6px; }
.info-card p { color: var(--muted); margin: 0; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: steps; }
.timeline-step { position: relative; border: 1px solid var(--line); border-radius: 14px; padding: 26px 20px 22px; background: #fff; }
.timeline-step::before { counter-increment: steps; content: counter(steps, decimal-leading-zero); display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; background: var(--gold); color: #fff; font-weight: 900; margin-bottom: 13px; }
.timeline-step h3 { margin: 0 0 6px; }
.timeline-step p { color: var(--muted); margin: 0; }

/* Contact/forms */
.contact-layout { display: grid; grid-template-columns: .85fr 1.3fr; gap: 28px; align-items: start; }
.contact-box, .form-box { border: 1px solid var(--line); border-radius: 17px; padding: 27px; background: #fff; box-shadow: var(--shadow-sm); }
.contact-box h2, .form-box h2 { margin-top: 0; }
.contact-item { display: flex; gap: 12px; margin: 18px 0; }
.contact-item svg { color: var(--gold); flex: 0 0 auto; margin-top: 3px; }
.contact-item strong { display: block; }
.contact-item span, .contact-item a { color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.form-grid .full { grid-column: 1/-1; }
.notice { border-inline-start: 4px solid var(--gold); background: #fffaf0; padding: 14px 16px; color: #5d5138; border-radius: 8px; }
.map-placeholder { min-height: 290px; background: linear-gradient(135deg, #edf1f4, #fff); border: 1px solid var(--line); border-radius: 16px; display: grid; place-items: center; text-align: center; padding: 20px; }

/* Request modal */
.modal-backdrop { position: fixed; inset: 0; background: rgba(12,15,18,.56); backdrop-filter: blur(4px); z-index: 90; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop.open { display: flex; }
.modal { width: min(620px,100%); max-height: min(720px, calc(100vh - 40px)); overflow: auto; background: #fff; border-radius: 20px; box-shadow: var(--shadow-lg); padding: 27px; position: relative; }
.modal-close { position: absolute; top: 14px; inset-inline-end: 14px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }
.modal h2 { margin: 0 0 6px; }
.modal p { color: var(--muted); margin-top: 0; }

/* Article cards */
.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.article-card { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; }
.article-card img { width: 100%; height: 220px; object-fit: cover; }
.article-card-body { padding: 19px; }
.article-card .tag { color: var(--gold-dark); font-size: 12px; font-weight: 800; }
.article-card h3 { margin: 6px 0; font-size: 20px; }
.article-card p { color: var(--muted); margin: 0; }

/* Install */
.install-banner { display: none; position: fixed; left: 50%; transform: translateX(-50%); bottom: 82px; z-index: 70; width: min(420px, calc(100% - 30px)); background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 13px; align-items: center; justify-content: space-between; gap: 10px; }
.install-banner.show { display: flex; }
.install-banner p { margin: 0; font-size: 13px; }

@media (max-width: 1120px) {
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 13px; }
  .search-grid { grid-template-columns: repeat(3,1fr); }
  .search-submit { width: 100%; }
  .property-grid { grid-template-columns: repeat(2,1fr); }
  .service-grid, .feature-row { grid-template-columns: repeat(3,1fr); }
  .feature-item:nth-child(4) { border-inline-start: 0; }
  .market-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .filter-toolbar .search-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 900px) {
  .site-nav { display: none; }
  .mobile-menu-button { display: inline-grid; }
  .header-inner { min-height: 70px; justify-content: space-between; }
  .brand img { width: 64px; height: 61px; }
  .mobile-drawer { display: block; position: fixed; z-index: 100; top: 0; bottom: 0; inset-inline-end: 0; width: min(360px,88vw); background: #fff; transform: translateX(110%); transition: .3s ease; padding: 25px; box-shadow: var(--shadow-lg); }
  html[dir="ltr"] .mobile-drawer { inset-inline-end: auto; inset-inline-start: 0; transform: translateX(-110%); }
  .mobile-drawer.open { transform: translateX(0); }
  .drawer-backdrop { display: block; position: fixed; z-index: 99; inset: 0; background: rgba(0,0,0,.4); opacity: 0; visibility: hidden; transition: .25s; }
  .drawer-backdrop.open { opacity: 1; visibility: visible; }
  .drawer-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 15px; margin-bottom: 15px; }
  .drawer-head img { width: 65px; height: 70px; object-fit: contain; }
  .drawer-nav a { display: block; padding: 13px 0; border-bottom: 1px solid #f1efea; font-weight: 700; }
  .home-hero { min-height: 470px; background-position: 62% center; }
  .hero-grid { min-height: 470px; grid-template-columns: 56% 44%; }
  .hero-copy { padding-bottom: 130px; }
  .hero-service-strip { width: min(510px, 58vw); }
  .management-grid { grid-template-columns: 1fr; }
  .management-collage { order: 2; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-card { position: static; }
  .content-grid-3 { grid-template-columns: repeat(2,1fr); }
  .timeline { grid-template-columns: repeat(2,1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  body { padding-bottom: 68px; }
  .container { width: min(100% - 28px, var(--container)); }
  .site-topbar { min-height: 34px; }
  .site-topbar .container { font-size: 11px; }
  .topbar-side { gap: 9px; }
  .topbar-hide-mobile { display: none; }
  .header-tools .icon-button:not(.mobile-menu-button) { display: none; }
  .home-hero {
    min-height: 470px;
    background:
      linear-gradient(to bottom, rgba(255,255,255,.79) 0%, rgba(255,255,255,.94) 56%, #fff 100%),
      url('../images/doha-hero.webp') 54% center / cover no-repeat;
  }
  .hero-grid { display: block; min-height: 470px; }
  .hero-copy { max-width: 100%; padding: 34px 4px 180px; text-align: center; direction: rtl; }
  html[dir="ltr"] .hero-copy { text-align: center; direction: ltr; }
  .hero-copy h1 { font-size: 36px; }
  .hero-copy .hero-subtitle { margin-inline: auto; font-size: 17px; }
  .hero-copy .hero-description { margin-inline: auto; font-size: 14px; }
  .hero-service-strip { inset-inline: 14px; bottom: 33px; width: auto; }
  .hero-service { min-height: 87px; padding: 12px 5px; font-size: 11px; }
  .hero-service svg { width: 23px; height: 23px; }
  .search-wrap { margin-top: 16px; }
  .search-panel { padding: 15px; }
  .search-grid, .filter-toolbar .search-grid { grid-template-columns: 1fr; }
  .search-tools { align-items: flex-start; flex-direction: column; }
  .section { padding: 50px 0; }
  .section.compact { padding: 40px 0; }
  .section-head.inline { display: block; text-align: center; }
  .section-head.inline .btn { margin-top: 15px; }
  .property-grid { display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; padding-bottom: 9px; scrollbar-width: none; }
  .property-grid::-webkit-scrollbar { display: none; }
  .property-card { flex: 0 0 83%; scroll-snap-align: center; }
  .market-grid { display: flex; overflow-x: auto; gap: 13px; padding-bottom: 8px; scrollbar-width: none; }
  .market-grid::-webkit-scrollbar { display: none; }
  .market-card { flex: 0 0 45%; }
  .feature-row { grid-template-columns: repeat(2,1fr); }
  .feature-item { border-bottom: 1px solid var(--line); }
  .feature-item:nth-child(odd) { border-inline-start: 0; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { min-height: 120px; }
  .stat-item:nth-child(odd) { border-inline-start: 0; }
  .stat-item:last-child { grid-column: 1/-1; }
  .management-collage { min-height: 370px; }
  .management-collage .main-img { height: 80%; width: 82%; }
  .management-collage .small-img { height: 38%; }
  .management-metric { min-width: 125px; padding: 13px; }
  .cta-strip::before, .cta-strip::after { width: 130px; opacity: .10; }
  .cta-inner h2 { font-size: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-bottom { flex-direction: column; justify-content: center; padding: 15px 0; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .whatsapp-float { display: none; }
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 75;
    height: 68px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    align-items: center;
    background: rgba(255,255,255,.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 30px rgba(20,22,25,.09);
  }
  .mobile-bottom-nav a { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; font-size: 10px; color: #4c5156; }
  .mobile-bottom-nav a.active { color: var(--gold-dark); }
  .mobile-bottom-nav svg { width: 22px; height: 22px; }
  .mobile-bottom-nav .wa-nav { color: #fff; }
  .mobile-bottom-nav .wa-nav span:first-child { width: 46px; height: 46px; display: grid; place-items: center; background: var(--green); border-radius: 50%; margin-top: -16px; box-shadow: 0 8px 18px rgba(31,191,91,.28); }
  .mobile-bottom-nav .wa-nav svg { width: 25px; height: 25px; }
  .page-hero { min-height: 280px; background: linear-gradient(to bottom, rgba(255,255,255,.83), rgba(255,255,255,.97)), var(--page-image, url('../images/doha-hero.webp')) center/cover; text-align: center; }
  .page-hero-content { margin: auto; }
  .content-grid-3, .content-grid-2 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 230px 150px; }
  .detail-gallery img:first-child { grid-column: 1/3; grid-row: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .topbar-link.whatsapp { font-size: 10px; }
  .hero-copy h1 { font-size: 31px; }
  .hero-copy .hero-subtitle { font-size: 16px; }
  .market-card { flex-basis: 58%; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 18px 9px; }
  .feature-item { padding-inline: 8px; }
  .property-card { flex-basis: 88%; }
}

/* Physical placement aligned with the approved desktop concept */
@media (min-width: 701px) {
  .hero-service-strip {
    right: max(40px, calc((100vw - var(--container))/2 + 12px));
    left: auto;
    inset-inline-end: auto;
  }
  .page-hero .container { direction: ltr; }
  .page-hero-content { direction: rtl; text-align: right; }
html[dir="ltr"] .page-hero-content { direction: ltr; text-align: left; }
}

/* Production form safety, accessibility and keyboard polish */
.form-honeypot {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}
.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #faf9f7;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
  cursor: pointer;
}
.consent-field input {
  inline-size: 18px;
  block-size: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  accent-color: var(--gold-dark);
}
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(176, 128, 58, .36);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* 2026 editorial real-estate identity — inspired by the requested visual language */
html { scroll-padding-top: 112px; }
body { background: var(--ivory); }

.site-topbar {
  display: none !important;
}
.site-topbar .container { font-size: 11px; }
.topbar-link, .topbar-link.whatsapp { color: rgba(255,255,255,.9); }
.topbar-link:hover, .language-toggle:hover { color: var(--gold-2); }
.language-toggle { color: #fff; }
.ms-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 23px;
  padding: 2px 9px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 800;
}
.ms-status i { width: 7px; height: 7px; border-radius: 50%; background: #e7c579; box-shadow: 0 0 0 4px rgba(231,197,121,.12); }
.ms-status.is-live i { background: #65dc9a; box-shadow: 0 0 0 4px rgba(101,220,154,.14); }
.ms-status.is-offline i { background: #efb665; }

.site-header {
  background: rgba(255,255,255,.965);
  border-bottom-color: rgba(8,74,69,.11);
  box-shadow: 0 10px 30px rgba(8,45,40,.045);
}
.header-inner { min-height: 76px; gap: 20px; }
.header-language-toggle {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(8,74,69,.16);
  border-radius: 999px;
  color: var(--forest);
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.header-language-toggle:hover { color: #fff; background: var(--forest); border-color: var(--forest); }
.drawer-language-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}
.drawer-language-row button {
  min-height: 40px;
  padding: 0 17px;
  border: 1px solid rgba(8,74,69,.18);
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}
.brand img { width: 64px; height: 66px; }
.site-nav { gap: 17px; }
.site-nav a { min-height: 76px; font-size: 11.5px; font-weight: 800; }
.site-nav a::after { height: 2px; background: var(--forest); }
.site-nav a:hover, .site-nav a.active { color: var(--forest); }
.header-tools { gap: 9px; }
.header-consultation { min-height: 40px; padding-inline: 15px; border-radius: 5px; font-size: 11px; }
.icon-button { border-color: rgba(8,74,69,.14); }
.icon-button:hover { color: var(--forest); border-color: var(--forest); }

.btn { min-height: 50px; border-radius: 5px; letter-spacing: 0; }
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 12px 30px rgba(156,104,29,.22);
}
.btn-gold:hover { background: #b78229; box-shadow: 0 16px 34px rgba(156,104,29,.3); }
.btn-outline { border-color: rgba(8,74,69,.38); color: var(--forest); background: transparent; }
.btn-outline:hover { color: #fff; background: var(--forest); border-color: var(--forest); }
.btn-hero-outline { color: #fff; border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.05); }
.btn-hero-outline:hover { background: #fff; color: var(--forest-deep); }

.home-hero {
  min-height: 630px;
  overflow: visible;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3,28,26,.28) 0%, rgba(4,34,31,.48) 45%, rgba(3,28,26,.9) 100%),
    url('../images/doha-hero.webp') 52% 52% / cover no-repeat;
}
html[dir="ltr"] .home-hero {
  background:
    linear-gradient(270deg, rgba(3,28,26,.24) 0%, rgba(4,34,31,.48) 45%, rgba(3,28,26,.9) 100%),
    url('../images/doha-hero.webp') 52% 52% / cover no-repeat;
}
.home-hero::before {
  content: "IN";
  position: absolute;
  inset-inline-start: 4vw;
  bottom: 36px;
  color: rgba(255,255,255,.065);
  font-size: clamp(150px, 21vw, 310px);
  line-height: .72;
  font-weight: 800;
  letter-spacing: -.09em;
  pointer-events: none;
}
.home-hero::after { display: none; }
.hero-grid { min-height: 630px; grid-template-columns: minmax(0, 62%) 1fr; direction: rtl; }
html[dir="ltr"] .hero-grid { direction: ltr; }
.hero-copy { max-width: 720px; padding: 70px 0 130px; color: #fff; }
.hero-kicker { color: var(--gold-2); font-size: 13px; letter-spacing: .16em; }
.hero-copy h1 { max-width: 720px; font-size: clamp(48px, 5.5vw, 72px); line-height: 1.07; letter-spacing: -.045em; }
.hero-copy h1 .gold-line { color: var(--gold-2); margin-top: 6px; }
.hero-copy .hero-subtitle { margin-top: 24px; color: #fff; font-size: 20px; }
.hero-copy .hero-description { color: rgba(255,255,255,.82); max-width: 620px; font-size: 15px; line-height: 2; }
.hero-actions { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.hero-actions .btn { min-width: 168px; }
.hero-service-strip {
  bottom: -49px;
  right: 50% !important;
  left: auto !important;
  transform: translateX(50%);
  width: min(var(--container), calc(100% - 40px));
  border: 1px solid rgba(8,74,69,.1);
  border-radius: 0;
  background: rgba(255,255,255,.97);
  box-shadow: 0 22px 55px rgba(4,48,44,.16);
}
.hero-service { min-height: 98px; padding: 16px; color: var(--forest-ink); border-color: rgba(8,74,69,.12); }
.hero-service svg { color: var(--gold); width: 27px; height: 27px; }
.hero-service:hover { color: var(--forest); background: var(--ivory); }

.search-wrap { margin-top: 79px; }
.search-panel { padding: 22px 24px 18px; border-radius: 0; border-color: rgba(8,74,69,.13); box-shadow: 0 18px 44px rgba(8,45,40,.08); }
.field label { color: var(--forest-ink); }
.field select, .field input, .field textarea { border-radius: 4px; border-color: #d9e1dd; }
.field select:focus, .field input:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(8,74,69,.1); }
.advanced-button, .text-button { color: var(--forest); }

.section { padding-block: 92px; }
.section.compact { padding-block: 76px; }
.section-head { margin-bottom: 38px; }
.section-head h2 { color: var(--forest-ink); font-size: clamp(36px, 4.8vw, 62px); line-height: 1.12; letter-spacing: -.04em; }
.section-head p { line-height: 1.95; }
.section-head.inline { align-items: center; }
.featured-section { position: relative; overflow: hidden; background: #fff; }
.featured-section::before {
  content: "IN";
  position: absolute;
  inset-inline-start: -.04em;
  bottom: -.17em;
  color: rgba(8,74,69,.035);
  font-size: 250px;
  font-weight: 800;
  line-height: .8;
  pointer-events: none;
}
.markets-section { background: var(--ivory); border-block: 1px solid rgba(8,74,69,.06); }
.why-section { background: #fff; }
.services-showcase { position: relative; overflow: hidden; color: #fff; background: var(--forest-deep); }
.services-showcase::before { content: "IN REAL ESTATE"; position: absolute; inset-inline-end: -20px; bottom: -35px; color: rgba(255,255,255,.035); font-size: clamp(80px, 10vw, 150px); font-weight: 800; white-space: nowrap; }
.services-showcase .section-head h2, .services-showcase .section-head p { color: #fff; }
.services-showcase .service-card { color: #fff; background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.16); min-height: 190px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.services-showcase .service-card:hover { background: rgba(255,255,255,.09); border-color: var(--gold-2); }
.services-showcase .service-card svg { color: var(--gold-2); }
.services-showcase .service-card p { color: rgba(255,255,255,.72); }

.property-card, .market-card, .image-card, .info-card, .timeline-step, .contact-box, .form-box, .filter-toolbar, .detail-card, .article-card { border-radius: 0; border-color: rgba(8,74,69,.13); }
.property-card { box-shadow: 0 14px 36px rgba(8,45,40,.055); }
.property-media { height: 235px; }
.property-label { border-radius: 0; background: var(--gold); }
.property-price { color: var(--forest); }
.market-card { padding-block: 24px; }
.market-card:hover { border-color: var(--gold); }
.feature-icon, .info-card svg, .contact-item svg, .contact-line svg { color: var(--gold); }
.feature-item { padding-block: 24px; border-color: rgba(8,74,69,.12); }

.stats-band {
  background:
    linear-gradient(rgba(3,44,41,.92), rgba(3,44,41,.92)),
    url('../images/doha-hero.webp') center / cover;
}
.stat-item { min-height: 175px; }
.stat-value { color: var(--gold-2); }
.management-grid { gap: 74px; }
.management-collage .main-img, .management-collage .small-img { border-radius: 0; }
.management-metric { border-radius: 0; border-color: rgba(8,74,69,.14); }
.management-metric strong, .management-copy h2 span { color: var(--gold); }
.management-copy h2 { color: var(--forest-ink); font-size: clamp(38px, 4.8vw, 62px); line-height: 1.13; letter-spacing: -.04em; }

.page-hero {
  min-height: 430px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3,31,29,.38), rgba(3,31,29,.91)),
    var(--page-image, url('../images/doha-hero.webp')) center / cover no-repeat;
}
html[dir="ltr"] .page-hero { background: linear-gradient(270deg, rgba(3,31,29,.38), rgba(3,31,29,.91)), var(--page-image, url('../images/doha-hero.webp')) center / cover no-repeat; }
.page-hero::after { content: "IN"; position: absolute; inset-inline-end: 5vw; bottom: -45px; color: rgba(255,255,255,.055); font-size: 230px; font-weight: 800; line-height: 1; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(48px, 6vw, 72px); letter-spacing: -.045em; }
.page-hero p { color: rgba(255,255,255,.8); }
.breadcrumbs { color: var(--gold-2); }

.cta-strip { padding-block: 58px; color: #fff; border: 0; background: var(--forest); }
.cta-strip::before, .cta-strip::after { display: none; }
.cta-inner p { color: rgba(255,255,255,.72); }
.cta-phone svg { color: #65dc9a; }
.site-footer { color: rgba(255,255,255,.9); background: var(--forest-deep); padding-top: 58px; }
.footer-brand p, .footer-column a, .footer-column p, .footer-bottom { color: rgba(255,255,255,.64); }
.footer-column a:hover { color: var(--gold-2); }
.footer-bottom { border-color: rgba(255,255,255,.12); }
.footer-socials a { border-color: rgba(255,255,255,.16); }

@media (max-width: 1180px) {
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 10.5px; }
  .header-consultation { display: none; }
}

@media (max-width: 900px) {
  html { scroll-padding-top: 102px; }
  .international-hero,.international-hero-inner { min-height: 600px; }
  .international-hero-mosaic { grid-template-columns: repeat(2,1fr); }
  .international-hero-mosaic figure:nth-child(3),.international-hero-mosaic figure:nth-child(4) { display: none; }
  .international-hero-copy { width: min(650px,88%); }
  .international-market-card,.international-market-card.market-uk,.international-market-card.market-bosnia,.international-market-card.market-egypt,.international-market-card.market-turkiye { grid-column: span 6; }
  .business-showcase { grid-template-columns: 1fr; }
  .business-card-media { height: 380px; }
  .business-card-body { min-height: 0; }
  .header-inner { min-height: 70px; }
  .brand img { width: 58px; height: 60px; }
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    z-index: 1001;
    top: 0;
    bottom: 0;
    right: 0 !important;
    left: auto !important;
    width: min(380px, calc(100vw - 44px));
    max-width: 100%;
    color: var(--forest-ink);
    background: var(--ivory);
    transform: translate3d(105%,0,0);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  html[dir="ltr"] .mobile-drawer {
    right: auto !important;
    left: 0 !important;
    transform: translate3d(-105%,0,0);
  }
  .mobile-drawer.open { transform: translate3d(0,0,0) !important; }
  .drawer-backdrop { z-index: 1000; }
  body.menu-open { overflow: hidden; }
  body.menu-open .mobile-bottom-nav { transform: translateY(120%); pointer-events: none; }
  .drawer-nav a.active { color: var(--forest); }
  .home-hero, .hero-grid { min-height: 590px; }
  .hero-grid { grid-template-columns: minmax(0, 78%) 1fr; }
  .hero-copy { padding-bottom: 135px; }
  .hero-copy h1 { font-size: 55px; }
  .hero-service-strip { width: calc(100% - 32px); }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 100px; }
  body { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .header-inner { min-height: 66px; }
  .brand img { width: 54px; height: 57px; }
  .header-tools { gap: 6px; }
  .header-language-toggle { min-height: 38px; padding-inline: 11px; font-size: 10px; }
  .mobile-menu-button { width: 42px; height: 42px; }
  .mobile-drawer { width: min(360px, calc(100vw - 36px)); padding: 20px; }
  .business-showcase { gap: 20px; }
  .business-card { border-radius: 21px; }
  .business-card-media { height: 245px; }
  .business-card-index { top: 14px; inset-inline-start: 14px; width: 40px; height: 40px; }
  .business-card-location { inset-inline-end: 14px; bottom: 14px; }
  .business-card-body { padding: 22px 20px 24px; }
  .business-card-heading { gap: 10px; }
  .business-card h3 { font-size: 24px; }
  .business-card-mark { font-size: 38px; }
  .business-card-body > p { min-height: 0; font-size: 12px; }
  .international-hero,.international-hero-inner { min-height: 590px; }
  .international-hero-mosaic { grid-template-columns: 1.25fr .75fr; }
  .international-hero-mosaic figure:nth-child(2) { transform: none; }
  .international-hero-shade { background: linear-gradient(0deg,rgba(4,29,27,.95) 4%,rgba(4,29,27,.72) 62%,rgba(4,29,27,.45) 100%); }
  html[dir="ltr"] .international-hero-shade { background: linear-gradient(0deg,rgba(4,29,27,.95) 4%,rgba(4,29,27,.72) 62%,rgba(4,29,27,.45) 100%); }
  .international-hero::after { bottom: -46px; font-size: 180px; }
  .international-hero-copy { width: 100%; margin: auto 0 0; padding: 90px 0 54px; text-align: center; }
  .international-hero h1 { margin-inline: auto; font-size: 48px; line-height: 1.08; }
  .international-hero p { margin: 17px auto 23px; font-size: 13px; line-height: 1.9; }
  .international-hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .international-hero-actions .btn { min-width: 0; padding-inline: 10px; font-size: 10px; }
  .international-hero-markets { justify-content: center; margin-top: 24px; }
  .international-market-grid { grid-template-columns: 1fr; gap: 20px; }
  .international-market-card,.international-market-card.market-uk,.international-market-card.market-bosnia,.international-market-card.market-egypt,.international-market-card.market-turkiye { grid-column: 1; border-radius: 21px; }
  .international-market-media { height: 245px; }
  .international-market-body { min-height: 0; margin: -24px 12px 12px; padding: 22px 18px 19px; border-radius: 17px; }
  .international-market-card h3 { font-size: 27px; }
  .international-market-card p { min-height: 0; }
  .home-hero {
    min-height: 560px;
    background:
      linear-gradient(0deg, rgba(3,28,26,.94) 0%, rgba(3,31,29,.58) 65%, rgba(3,31,29,.38) 100%),
      url('../images/doha-hero.webp') 56% center / cover no-repeat;
  }
  html[dir="ltr"] .home-hero {
    background:
      linear-gradient(0deg, rgba(3,28,26,.94) 0%, rgba(3,31,29,.58) 65%, rgba(3,31,29,.38) 100%),
      url('../images/doha-hero.webp') 46% center / cover no-repeat;
  }
  .home-hero::before { inset-inline-start: -8px; bottom: 80px; font-size: 150px; }
  .hero-grid { display: block; min-height: 560px; }
  .hero-copy { padding: 62px 2px 145px; text-align: center; }
  .hero-kicker { font-size: 10px; }
  .hero-copy h1 { margin-inline: auto; font-size: 42px; line-height: 1.1; }
  .hero-copy .hero-subtitle { font-size: 17px; }
  .hero-copy .hero-description { font-size: 13px; line-height: 1.9; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 24px; }
  .hero-actions .btn { min-width: 0; padding-inline: 10px; font-size: 11px; }
  .hero-service-strip { inset-inline: 14px !important; right: 14px !important; left: 14px !important; bottom: -42px; width: auto; transform: none; }
  .hero-service { min-height: 84px; padding: 10px 4px; font-size: 10px; }
  .hero-service svg { width: 22px; height: 22px; }
  .search-wrap { margin-top: 66px; }
  .search-panel { padding: 16px; }
  .search-grid { gap: 10px; }
  .search-hint { font-size: 10px; }
  .section { padding-block: 66px; }
  .section.compact { padding-block: 58px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 38px; line-height: 1.14; }
  .section-head p { font-size: 13px; line-height: 2; }
  .featured-section::before { font-size: 160px; }
  .property-card { flex-basis: 86%; }
  .property-media { height: 230px; }
  .market-card { flex-basis: 48%; }
  .feature-item { padding-inline: 10px; }
  .services-showcase .service-card { min-height: 165px; }
  .management-grid { gap: 38px; }
  .management-copy h2 { font-size: 41px; }
  .page-hero {
    min-height: 345px;
    text-align: center;
    background: linear-gradient(0deg, rgba(3,31,29,.91), rgba(3,31,29,.48)), var(--page-image, url('../images/doha-hero.webp')) center/cover;
  }
  .page-hero h1 { font-size: 46px; }
  .page-hero p { font-size: 14px; line-height: 1.9; }
  .page-hero::after { bottom: -24px; font-size: 145px; }
  .mobile-bottom-nav {
    height: calc(68px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(8,74,69,.985);
    border-top-color: rgba(255,255,255,.14);
    box-shadow: 0 -12px 30px rgba(3,35,32,.2);
  }
  .mobile-bottom-nav a, .mobile-bottom-nav a.active { color: rgba(255,255,255,.88); }
  .mobile-bottom-nav .wa-nav span:first-child { color: var(--forest); background: #fff; box-shadow: 0 10px 24px rgba(0,0,0,.22); }
  .site-footer { padding-bottom: 22px; }
}

@media (max-width: 430px) {
  .container { width: calc(100% - 28px); }
  .topbar-link.whatsapp span { font-size: 9px; }
  .hero-copy { padding-top: 54px; }
  .hero-copy h1 { font-size: 38px; }
  .hero-copy .hero-subtitle { font-size: 15px; }
  .hero-actions .btn { min-height: 47px; font-size: 10px; }
  .section-head h2 { font-size: 35px; }
  .market-card { flex-basis: 58%; }
  .service-grid { gap: 9px; }
  .services-showcase .service-card { padding-inline: 8px; }
}
