:root {
  --navy: #082744;
  --navy-2: #031827;
  --ink: #152433;
  --teal: #0f8d96;
  --teal-soft: #dff4f5;
  --gold: #c8972d;
  --gold-soft: #fff2cf;
  --paper: #f6f8f9;
  --line: #dbe4e7;
  --muted: #60707d;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 39, 68, 0.12);
  --shadow-strong: 0 28px 70px rgba(8, 39, 68, 0.18);
  --radius-card: 24px;
  --radius-soft: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(223, 244, 245, 0.22), transparent 380px),
    var(--white);
  font-family: Aptos, "Aptos Display", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body[dir="rtl"] {
  font-family: Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a[href^="tel"],
a[href^="mailto"] {
  direction: ltr;
  unicode-bidi: embed;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 228, 231, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.topbar {
  background: linear-gradient(90deg, #eef8f9, #f8fbfd 58%, #fff9eb);
  color: var(--navy);
  border-bottom: 1px solid rgba(15, 141, 150, 0.14);
  font-size: 0.82rem;
}

.topbar-inner,
.nav-inner,
.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  direction: ltr;
  width: 100%;
}

.topbar-links a:first-child {
  margin-right: auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 104px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(0.98rem, 1.3vw, 1.1rem);
}

.brand-sub {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  border-radius: 7px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(15, 141, 150, 0.1);
  color: var(--teal);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle,
.theme-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  min-height: 42px;
  padding: 0 12px;
}

.theme-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  padding: 0;
}

.theme-icon {
  grid-area: 1 / 1;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 180ms ease, transform 180ms ease;
}

.theme-icon-sun {
  opacity: 0;
  transform: rotate(-30deg) scale(0.7);
}

html[data-theme="dark"] .theme-icon-moon {
  opacity: 0;
  transform: rotate(30deg) scale(0.7);
}

html[data-theme="dark"] .theme-icon-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  padding: 0;
  font-size: 1.35rem;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #087c86 0%, #18a1a8 62%, #c8972d 100%);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(8, 39, 68, 0.16);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.22) 42%, transparent 78%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(8, 39, 68, 0.22);
}

.button:hover::before {
  transform: translateX(120%);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
  box-shadow: none;
}

.button.gold {
  background: linear-gradient(135deg, #087c86 0%, #18a1a8 62%, #c8972d 100%);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(241, 200, 91, 0.14), transparent 27%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 252, 253, 0.92) 39%, rgba(236, 248, 249, 0.48) 66%, rgba(226, 244, 246, 0.18) 100%),
    url("assets/doha-finance-hero.png?v=2026072502") 58% center / cover no-repeat,
    #f8fbfc;
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 39, 68, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 39, 68, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(120deg, rgba(0, 0, 0, 0.7), transparent 72%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--gold));
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  min-height: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: 44px;
  align-items: center;
  padding: 72px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  color: var(--navy);
  font-family: "Aptos Display", Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2 {
  background: linear-gradient(95deg, var(--navy) 0%, var(--teal) 58%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero h1 {
  background: linear-gradient(95deg, var(--navy) 0%, #126174 58%, var(--teal) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 1.04;
  max-width: 820px;
}

.market-rotator {
  display: inline-grid;
  min-width: 2.9em;
  background: none;
  color: rgb(241, 200, 91);
  -webkit-text-fill-color: rgb(241, 200, 91);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  vertical-align: baseline;
}

.market-name {
  grid-area: 1 / 1;
  opacity: 1;
  filter: blur(0);
  transition:
    opacity 420ms ease,
    filter 420ms ease;
  will-change: opacity, filter;
}

.market-name.is-dissolving {
  opacity: 0;
  filter: blur(6px);
}
.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-panel {
  align-self: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 251, 0.94)),
    var(--white);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
  color: var(--ink);
  padding: 28px;
  transform: translateY(-12px);
}

.hero-panel img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-soft);
  margin-bottom: 20px;
}

.hero-panel h2 {
  font-size: 1.35rem;
}

.hero-panel p {
  color: var(--muted);
  margin: 10px 0 0;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
  gap: 12px;
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 1.45rem;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  padding: 88px 0;
}

.section.alt {
  background:
    linear-gradient(135deg, rgba(223, 244, 245, 0.6), rgba(232, 243, 249, 0.6)),
    var(--paper);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.5fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 3.4rem);
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.section-head.centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.section-head.centered p {
  max-width: 760px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.card,
.office-card,
.service-card,
.value-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(250, 253, 253, 0.95)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 14px 32px rgba(8, 39, 68, 0.06);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease, background 260ms ease;
}

.card::before,
.office-card::before,
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(15, 141, 150, 0.14), transparent 34%),
    linear-gradient(135deg, transparent, rgba(11, 93, 120, 0.12));
  opacity: 0;
  transition: opacity 260ms ease;
}

.card:hover,
.office-card:hover,
.value-card:hover {
  border-color: rgba(15, 141, 150, 0.32);
  box-shadow: 0 22px 50px rgba(8, 39, 68, 0.13);
  transform: translateY(-6px);
}

.card:hover::before,
.office-card:hover::before,
.value-card:hover::before {
  opacity: 1;
}

.service-card {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 265px;
  overflow: hidden;
  isolation: isolate;
  transform: translateY(0);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  animation: serviceReveal 700ms ease both;
}

.service-card:nth-child(2) {
  animation-delay: 80ms;
}

.service-card:nth-child(3) {
  animation-delay: 160ms;
}

.service-card:nth-child(4) {
  animation-delay: 240ms;
}

.service-card:nth-child(5) {
  animation-delay: 320ms;
}

.service-card:nth-child(6) {
  animation-delay: 400ms;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 8%, rgba(15, 141, 150, 0.2), transparent 31%),
    linear-gradient(135deg, rgba(15, 141, 150, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(11, 93, 120, 0.18), transparent 38%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -35%;
  left: -70%;
  width: 46%;
  height: 170%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: rotate(18deg);
  transition: left 620ms ease;
}

body[dir="rtl"] .service-card::after {
  left: auto;
  right: -70%;
  transition-property: right;
}

.service-card:hover {
  border-color: rgba(200, 151, 45, 0.55);
  box-shadow: 0 24px 55px rgba(8, 39, 68, 0.16);
  transform: translateY(-7px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  left: 120%;
}

body[dir="rtl"] .service-card:hover::after {
  left: auto;
  right: 120%;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, #e5f5f6, #fff4d8);
  color: var(--navy);
  border: 1px solid rgba(15, 141, 150, 0.16);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(8, 39, 68, 0.16);
  transition: background 260ms ease, color 260ms ease, transform 260ms ease, box-shadow 260ms ease;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  background: linear-gradient(145deg, #0f8d96, #42afb4 58%, #c8972d);
  color: var(--white);
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(15, 141, 150, 0.24);
}

.service-card h3,
.office-card h3,
.value-card h3,
.card h3 {
  font-size: 1.25rem;
}

.service-card p,
.office-card p,
.value-card p,
.card p {
  color: var(--muted);
  margin: 0;
}

.service-detail-grid {
  align-items: stretch;
}

.service-detail {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 200, 91, 0.1), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 252, 252, 0.94));
  box-shadow: 0 16px 38px rgba(8, 39, 68, 0.07);
  padding: 28px;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.service-detail:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 141, 150, 0.34);
  box-shadow: 0 24px 52px rgba(8, 39, 68, 0.12);
}

.service-detail h3 {
  margin-top: 18px;
  font-size: 1.32rem;
}

.service-detail > p {
  margin: 10px 0 0;
  color: var(--muted);
}

.service-points {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-size: 0.94rem;
}

body[dir="rtl"] .service-points li {
  padding-right: 24px;
  padding-left: 0;
}

.service-points li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 0 0 0 4px rgba(15, 141, 150, 0.08);
}

body[dir="rtl"] .service-points li::before {
  right: 2px;
  left: auto;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(15, 141, 150, 0.18);
  border-radius: 999px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f3fbfb, #fff9ea);
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 750;
  box-shadow: 0 8px 22px rgba(8, 39, 68, 0.045);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.industry-list span:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 151, 45, 0.44);
  box-shadow: 0 12px 26px rgba(8, 39, 68, 0.08);
}

.feature-band {
  background:
    radial-gradient(circle at 84% 0%, rgba(241, 200, 91, 0.16), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(15, 141, 150, 0.13), transparent 34%),
    linear-gradient(135deg, #f8fcfc, #edf8f9 55%, #fffaf0);
  color: var(--ink);
  border-top: 1px solid rgba(15, 141, 150, 0.12);
  border-bottom: 1px solid rgba(15, 141, 150, 0.12);
  padding: 64px 0;
}

.feature-band h2,
.feature-band h3 {
  color: var(--navy);
}

.feature-band h2 {
  background: linear-gradient(95deg, var(--navy) 0%, var(--teal) 68%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.feature-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 141, 150, 0.16);
  border-radius: var(--radius-soft);
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 32px rgba(8, 39, 68, 0.06);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.feature-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 44%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.feature-item:hover {
  background: var(--white);
  border-color: rgba(241, 200, 91, 0.62);
  transform: translateY(-5px);
}

.feature-item:hover::after {
  opacity: 1;
}

.feature-item p {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 0.94rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.64fr);
  gap: 34px;
  align-items: center;
}

.statement {
  border-left: 5px solid var(--gold);
  padding-left: 22px;
}

body[dir="rtl"] .statement {
  border-left: 0;
  border-right: 5px solid var(--gold);
  padding-left: 0;
  padding-right: 22px;
}

.statement p {
  color: var(--muted);
  font-size: 1.08rem;
}

.visual-panel {
  min-height: 420px;
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: var(--white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.advisory-visual {
  background-image:
    linear-gradient(150deg, rgba(8, 39, 68, 0.08), rgba(15, 141, 150, 0.05)),
    url("assets/financial-advisory.png");
}

.about-team-visual {
  background-image:
    linear-gradient(150deg, rgba(8, 39, 68, 0.07), rgba(15, 141, 150, 0.04)),
    url("assets/about-team.png");
}

.page-hero {
  background:
    radial-gradient(circle at 80% 0%, rgba(241, 200, 91, 0.18), transparent 30%),
    radial-gradient(circle at 14% 100%, rgba(15, 141, 150, 0.13), transparent 34%),
    linear-gradient(125deg, #ffffff, #eff9fa 58%, #fff9ed);
  color: var(--ink);
  border-bottom: 1px solid rgba(15, 141, 150, 0.14);
  padding: 78px 0 70px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.72fr);
  gap: 52px;
  align-items: center;
}

.page-hero-copy {
  min-width: 0;
}

.page-hero-media {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 141, 150, 0.16);
  border-radius: 28px;
  box-shadow: 0 24px 54px rgba(8, 39, 68, 0.16);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(8, 39, 68, 0.12));
  pointer-events: none;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.page-hero h1 {
  background: linear-gradient(95deg, var(--navy) 0%, var(--teal) 68%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  max-width: 900px;
}

.page-hero p {
  color: var(--muted);
  max-width: 760px;
  font-size: 1.1rem;
}

.page-hero .hero-byline {
  margin: 8px 0 12px;
  color: var(--teal-deep);
  font-size: 0.92rem;
  font-weight: 750;
}

.office-card strong,
.contact-line strong {
  color: var(--navy);
}

.office-meta {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
}

.process {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.process-item {
  counter-increment: step;
  position: relative;
  overflow: hidden;
  padding: 20px 20px 20px 72px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.process-item:hover {
  border-color: rgba(200, 151, 45, 0.48);
  box-shadow: 0 18px 38px rgba(8, 39, 68, 0.1);
  transform: translateX(6px);
}

body[dir="rtl"] .process-item:hover {
  transform: translateX(-6px);
}

body[dir="rtl"] .process-item {
  padding: 20px 72px 20px 20px;
}

.process-item::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--gold);
  font-weight: 900;
}

body[dir="rtl"] .process-item::before {
  left: auto;
  right: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-grid details {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius-soft);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(8, 39, 68, 0.055);
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.faq-grid details:hover,
.faq-grid details[open] {
  border-color: rgba(15, 141, 150, 0.34);
  box-shadow: 0 18px 38px rgba(8, 39, 68, 0.09);
  transform: translateY(-2px);
}

.faq-grid summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 20px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.35;
}

body[dir="rtl"] .faq-grid summary {
  padding: 20px 20px 20px 54px;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease;
}

body[dir="rtl"] .faq-grid summary::after {
  right: auto;
  left: 18px;
}

.faq-grid details[open] summary::after {
  transform: rotate(45deg);
  background: var(--gold-soft);
  color: var(--gold);
}

.faq-grid details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(330px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 48px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-lines {
  display: grid;
  gap: 14px;
}

.contact-line {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.cta-section {
  background:
    radial-gradient(circle at 85% 20%, rgba(241, 200, 91, 0.2), transparent 26%),
    radial-gradient(circle at 8% 90%, rgba(15, 141, 150, 0.13), transparent 32%),
    linear-gradient(105deg, #f8fcfc, #edf8f9, #fff9ed);
  color: var(--ink);
  border-top: 1px solid rgba(15, 141, 150, 0.12);
  padding: 70px 0;
}

.cta-section h2 {
  background: linear-gradient(95deg, var(--navy) 0%, var(--teal) 68%, var(--gold) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.cta-section p {
  max-width: 650px;
  color: var(--muted);
}

.site-footer {
  background:
    radial-gradient(circle at 90% 0%, rgba(241, 200, 91, 0.12), transparent 28%),
    linear-gradient(135deg, #f8fbfc, #edf6f7);
  color: var(--muted);
  border-top: 1px solid rgba(15, 141, 150, 0.16);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.8fr;
  gap: 34px;
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 190px;
  margin-bottom: 18px;
}

.footer-logo {
  width: 118px;
  height: auto;
  margin-bottom: 8px;
  object-fit: contain;
}

.footer-brand-name {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.1;
}

.footer-brand-sub {
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 3px;
  text-transform: uppercase;
}

.footer-grid h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(15, 141, 150, 0.2);
  border-radius: 14px;
  color: var(--navy);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-links a[aria-label="Facebook"] svg,
.social-links a[aria-label="LinkedIn"] svg,
.social-links a[aria-label="X"] svg {
  fill: currentColor;
  stroke: none;
}

.social-links a:hover {
  background: rgba(15, 141, 150, 0.12);
  border-color: rgba(15, 141, 150, 0.42);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(8, 39, 68, 0.12);
  margin-top: 34px;
  padding: 18px 0 72px;
  font-size: 0.86rem;
}

.credit a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 35;
  display: grid;
  justify-items: end;
  gap: 12px;
}

body[dir="rtl"] .contact-widget {
  right: auto;
  left: 22px;
  justify-items: start;
}

.contact-widget-panel {
  display: none;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(219, 228, 231, 0.95);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 251, 0.96)),
    var(--white);
  box-shadow: 0 24px 70px rgba(8, 39, 68, 0.24);
  padding: 18px;
}

.contact-widget.open .contact-widget-panel {
  display: grid;
  gap: 12px;
  animation: widgetIn 220ms ease both;
}

.contact-widget-panel h3 {
  font-size: 1.15rem;
}

.contact-widget-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-widget-form {
  display: grid;
  gap: 10px;
}

.contact-widget-form input,
.contact-widget-form textarea {
  min-height: 42px;
  font-size: 0.92rem;
}

.contact-widget-form textarea {
  min-height: 82px;
}

.contact-widget-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: linear-gradient(135deg, #087c86 0%, #18a1a8 62%, #c8972d 100%);
  color: var(--white);
  box-shadow: 0 18px 45px rgba(8, 39, 68, 0.26);
  cursor: pointer;
  font-weight: 900;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.contact-widget-toggle svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-widget-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(8, 39, 68, 0.3);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --navy: #dceef7;
  --navy-2: #020e17;
  --ink: #e6eef2;
  --teal: #36b7bf;
  --teal-soft: #103943;
  --gold: #e0b853;
  --gold-soft: #3c321d;
  --paper: #0a2231;
  --line: #294653;
  --muted: #a8b8c2;
  --white: #071b28;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
  --shadow-strong: 0 28px 70px rgba(0, 0, 0, 0.44);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 80% 0%, rgba(15, 141, 150, 0.12), transparent 30%),
    linear-gradient(180deg, #061722, #081d2a 460px, #061721);
}

html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(69, 104, 120, 0.62);
  background: rgba(5, 20, 30, 0.94);
}

html[data-theme="dark"] .brand img,
html[data-theme="dark"] .footer-logo {
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.72))
    drop-shadow(0 5px 14px rgba(0, 0, 0, 0.3));
}

html[data-theme="dark"] .footer-brand-name {
  color: #f4f8fa;
}

html[data-theme="dark"] .footer-brand-sub {
  color: #48c2c8;
}

html[data-theme="dark"] .topbar {
  background: linear-gradient(90deg, #0a2533, #0b202d 58%, #29261c);
  border-bottom-color: rgba(54, 183, 191, 0.18);
}

html[data-theme="dark"] .nav-links a:hover,
html[data-theme="dark"] .nav-links a.active {
  background: rgba(54, 183, 191, 0.14);
}

html[data-theme="dark"] .button,
html[data-theme="dark"] .button.gold,
html[data-theme="dark"] .contact-widget-toggle {
  color: #ffffff;
}

html[data-theme="dark"] .button.secondary {
  background: #0c2938;
  color: var(--navy);
}

html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at 84% 16%, rgba(224, 184, 83, 0.12), transparent 27%),
    linear-gradient(90deg, rgba(4, 18, 28, 0.97) 0%, rgba(5, 24, 36, 0.92) 40%, rgba(7, 32, 43, 0.5) 68%, rgba(6, 28, 38, 0.24) 100%),
    url("assets/doha-finance-hero.png?v=2026072502") 58% center / cover no-repeat,
    #061721;
}

html[data-theme="dark"] .hero h1 {
  background: none;
  color: #ffffff;
  -webkit-text-fill-color: currentColor;
}

html[data-theme="dark"] .hero h1 .market-rotator {
  color: rgb(241, 200, 91);
  -webkit-text-fill-color: rgb(241, 200, 91);
}

html[data-theme="dark"] .section.alt {
  background:
    linear-gradient(135deg, rgba(13, 50, 60, 0.55), rgba(35, 31, 21, 0.46)),
    var(--paper);
}

html[data-theme="dark"] .card,
html[data-theme="dark"] .office-card,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .value-card,
html[data-theme="dark"] .service-detail {
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 184, 83, 0.08), transparent 30%),
    linear-gradient(150deg, rgba(12, 43, 57, 0.98), rgba(7, 27, 40, 0.98));
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .service-icon {
  background: linear-gradient(145deg, #123946, #332d1f);
}

html[data-theme="dark"] .service-card:hover .service-icon {
  color: #ffffff;
}

html[data-theme="dark"] .industry-list span {
  background: linear-gradient(135deg, #0d303c, #302c1f);
}

html[data-theme="dark"] .feature-band,
html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .cta-section {
  background:
    radial-gradient(circle at 84% 0%, rgba(224, 184, 83, 0.1), transparent 30%),
    radial-gradient(circle at 10% 100%, rgba(54, 183, 191, 0.11), transparent 34%),
    linear-gradient(135deg, #071c29, #0a2633 58%, #211f18);
  color: var(--ink);
  border-color: rgba(54, 183, 191, 0.18);
}

html[data-theme="dark"] .feature-item,
html[data-theme="dark"] .faq-grid details {
  background: rgba(10, 34, 48, 0.94);
}

html[data-theme="dark"] .feature-item:hover {
  background: #0d2e3c;
}

html[data-theme="dark"] .visual-panel,
html[data-theme="dark"] .page-hero-media {
  border-color: rgba(54, 183, 191, 0.24);
}

html[data-theme="dark"] .process-item,
html[data-theme="dark"] input,
html[data-theme="dark"] select,
html[data-theme="dark"] textarea {
  background: #0a2635;
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: #8397a3;
}

html[data-theme="dark"] .site-footer {
  background:
    radial-gradient(circle at 90% 0%, rgba(224, 184, 83, 0.08), transparent 28%),
    linear-gradient(135deg, #061823, #09232f);
  border-top-color: rgba(54, 183, 191, 0.2);
}

html[data-theme="dark"] .footer-bottom {
  border-top-color: rgba(168, 184, 194, 0.2);
}

html[data-theme="dark"] .contact-widget-panel {
  border-color: var(--line);
  background:
    linear-gradient(150deg, rgba(12, 43, 57, 0.98), rgba(7, 27, 40, 0.98)),
    var(--white);
}

@media (max-width: 980px) {
  html[data-theme="dark"] .nav-links {
    background: #081f2d;
  }
}

@keyframes serviceReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes widgetIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .market-name,
  .market-name.is-dissolving {
    opacity: 1;
    visibility: visible;
    filter: none;
    transition: none;
  }
}

.hidden-lang {
  display: none !important;
}

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-soft);
    background: var(--white);
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-grid,
  .split,
  .contact-layout,
  .page-hero-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 320px;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 54px;
  }

  .grid-3,
  .feature-list,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .hero-grid {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 9px 0;
    gap: 6px;
  }

  .brand img {
    width: 86px;
  }

  .brand-text {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(244, 251, 252, 0.76) 48%, rgba(230, 247, 248, 0.52) 100%),
      url("assets/doha-finance-hero.png?v=2026072502") 64% center / cover no-repeat,
      #f8fbfc;
  }

  .hero-panel img {
    width: 100%;
  }

  .visual-panel {
    min-height: 280px;
  }

  .metric-row,
  .grid-3,
  .grid-2,
  .faq-grid,
  .feature-list,
  .field-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .page-hero h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 250px;
  }

  .footer-bottom,
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-widget {
    right: 14px;
    bottom: 14px;
  }

  body[dir="rtl"] .contact-widget {
    left: 14px;
  }
}
