@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");


:root {
  --navy: #10263f;
  --navy-2: #173a59;
  --teal: #087b7b;
  --teal-dark: #075f62;
  --maroon: #a50046;
  --orange: #f28a00;
  --sand: #f6f1e9;
  --mist: #edf4f4;
  --ink: #13283d;
  --muted: #627283;
  --line: #dce5e7;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(16, 38, 63, 0.12);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
html[dir="rtl"] body {
  font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  font-size: 16.5px;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.skip-link { position: fixed; inset-block-start: 8px; inset-inline-start: -999px; z-index: 9999; background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { inset-inline-start: 8px; }

.topbar { background: var(--navy); color: rgba(255,255,255,.82); font-size: .83rem; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.topbar-links { display: flex; align-items: center; gap: 18px; }
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky; inset-block-start: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(220,229,231,.9);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 10px 28px rgba(16,38,63,.08); }
.nav { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 270px; height: auto; image-rendering: auto; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: .88rem; font-weight: 600; }
.nav-links a { position: relative; padding-block: 28px; }
.nav-links a::after {
  content: ""; position: absolute; inset-inline: 0; inset-block-end: 20px; height: 2px;
  background: var(--maroon); transform: scaleX(0); transition: transform .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-link {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 46px; height: 42px; border: 1px solid var(--line);
  border-radius: 999px; font-weight: 800; color: var(--teal-dark);
}
.menu-toggle {
  display: none; width: 44px; height: 42px; align-items: center; justify-content: center;
  border: 1px solid var(--line); background: #fff; border-radius: 10px; color: var(--navy);
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  width: 20px; height: 2px; background: currentColor; display: block; position: relative; content: "";
}
.menu-toggle span::before { position: absolute; top: -6px; }
.menu-toggle span::after { position: absolute; top: 6px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 12px 20px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--maroon); color: #fff; box-shadow: 0 12px 28px rgba(165,0,70,.22); }
.button-primary:hover { background: #850039; }
.button-secondary { background: var(--teal); color: #fff; box-shadow: 0 12px 28px rgba(8,123,123,.2); }
.button-secondary:hover { background: var(--teal-dark); }
.button-ghost { background: transparent; color: var(--navy); border-color: #b9c9cf; }
.button-small { min-height: 42px; padding: 9px 16px; font-size: .88rem; }
.text-link { color: var(--maroon); font-weight: 800; display: inline-flex; align-items: center; gap: 7px; }
.text-link::after { content: "→"; transition: transform .2s ease; }
html[dir="rtl"] .text-link::after { content: "←"; }
.text-link:hover::after { transform: translateX(4px); }
html[dir="rtl"] .text-link:hover::after { transform: translateX(-4px); }

.hero { overflow: hidden; background: linear-gradient(135deg, #f8fbfb 0%, #f3eee7 100%); position: relative; }
.hero::before {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: rgba(8,123,123,.07); inset-block-start: -180px; inset-inline-start: -120px;
}
.hero-grid {
  min-height: 680px; display: grid; grid-template-columns: 1.08fr .92fr;
  align-items: center; gap: 64px; padding-block: 74px;
}
.eyebrow {
  margin: 0 0 16px; color: var(--maroon); font-size: .78rem;
  font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }
h1, h2, h3 { margin-block-start: 0; color: var(--navy); font-weight: 700; }
h1 { line-height: 1.24; }
h2 { line-height: 1.3; }
h3 { line-height: 1.38; }
h1 { font-size: clamp(2.45rem, 4.25vw, 4.35rem); letter-spacing: -.035em; margin-block-end: 22px; }
html[dir="rtl"] h1 { letter-spacing: -.012em; font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3vw, 2.95rem); letter-spacing: -.022em; margin-block-end: 17px; }
h3 { font-size: 1.2rem; margin-block-end: 10px; }
.lead { font-size: clamp(1rem, 1.25vw, 1.14rem); line-height: 1.85; color: var(--muted); max-width: 670px; margin-block: 0 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 16px 24px; margin-block-start: 34px; color: var(--navy-2); font-size: .9rem; font-weight: 700; }
.trust-item { display: inline-flex; align-items: center; gap: 8px; }
.trust-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.hero-media { position: relative; min-height: 530px; }
.hero-image {
  position: absolute; inset: 0 0 0 54px; width: calc(100% - 54px); height: 100%;
  object-fit: cover; border-radius: 220px 24px 24px 24px; box-shadow: var(--shadow);
}
html[dir="rtl"] .hero-image { inset: 0 54px 0 0; }
.hero-card {
  position: absolute; inset-inline-start: 0; inset-block-end: 38px; width: 220px;
  padding: 22px; border-radius: 18px; color: #fff; background: var(--navy); box-shadow: var(--shadow);
}
.hero-card strong { display: block; font-size: 2rem; color: var(--orange); line-height: 1; margin-block-end: 8px; }
.hero-card span { font-size: .9rem; opacity: .86; }

.section { padding-block: 100px; }
.section-sm { padding-block: 70px; }
.section-soft { background: var(--mist); }
.section-sand { background: var(--sand); }
.section-dark { background: var(--navy); color: rgba(255,255,255,.82); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead { color: rgba(255,255,255,.78); }
.section-heading {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px;
  align-items: end; margin-block-end: 48px;
}
.section-heading p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.85; }
.section-dark .section-heading p { color: rgba(255,255,255,.72); }
.kicker {
  color: var(--teal); font-weight: 900; text-transform: uppercase;
  letter-spacing: .12em; font-size: .75rem; margin-block-end: 12px;
}
html[dir="rtl"] .kicker { letter-spacing: 0; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 10px 28px rgba(16,38,63,.05);
}
.service-card { display: flex; flex-direction: column; min-height: 100%; transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card-image { aspect-ratio: 4/3; width: 100%; object-fit: cover; }
.service-card-body { padding: 25px; display: flex; flex-direction: column; flex: 1; }
.service-index { color: var(--orange); font-size: .78rem; font-weight: 900; letter-spacing: .1em; margin-block-end: 12px; }
.service-card p { color: var(--muted); margin: 0 0 20px; font-size: .96rem; line-height: 1.8; }
.service-card .text-link { margin-block-start: auto; }
.fact-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line);
  border-radius: 22px; overflow: hidden; background: #fff;
  box-shadow: 0 12px 34px rgba(16,38,63,.06);
}
.fact { padding: 24px; text-align: center; border-inline-end: 1px solid var(--line); }
.fact:last-child { border-inline-end: 0; }
.fact strong { display: block; font-size: 1.35rem; color: var(--navy); }
.fact span { color: var(--muted); font-size: .85rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media::after {
  content: ""; position: absolute; width: 110px; height: 110px; border-radius: 50%;
  background: var(--orange); inset-inline-end: -28px; inset-block-end: -28px; z-index: -1;
}
.check-list { list-style: none; padding: 0; margin: 28px 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-inline-start: 30px; color: var(--navy-2); font-weight: 650; }
.check-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; color: var(--teal); font-weight: 900; }

.process { counter-reset: steps; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step {
  position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; background: rgba(255,255,255,.045);
}
.process-step::before {
  counter-increment: steps; content: "0" counter(steps); display: block;
  color: var(--orange); font-size: 1.8rem; font-weight: 900; line-height: 1; margin-block-end: 28px;
}
.process-step p { color: rgba(255,255,255,.72); margin: 0; font-size: .94rem; line-height: 1.75; }

.property-notice {
  border: 1px solid var(--line); border-radius: 30px; padding: 44px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px;
  background: linear-gradient(135deg,#fff,var(--sand)); box-shadow: 0 12px 34px rgba(16,38,63,.05);
}
.property-notice p { color: var(--muted); max-width: 760px; margin-bottom: 0; }
.legal-note { margin-block-start: 14px !important; font-size: .86rem; }

.insight-card h3 { font-size: 1.25rem; }
.insight-card .service-card-image { aspect-ratio: 16/10; }
.insight-card .service-card-body { padding: 22px; }

.pill-list { display: flex; flex-wrap: wrap; gap: 10px; margin-block: 26px 0; }
.pill { padding: 9px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--navy-2); font-weight: 700; font-size: .88rem; }
.notice { padding: 20px 22px; border-radius: 16px; border-inline-start: 4px solid var(--orange); background: #fff7ea; color: #634316; }

.cta {
  border-radius: 30px; padding: 52px; background: linear-gradient(125deg, var(--teal-dark), var(--navy));
  color: rgba(255,255,255,.8); display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 32px; overflow: hidden; position: relative;
}
.cta::after {
  content: ""; position: absolute; width: 220px; height: 220px; border: 46px solid rgba(255,255,255,.05);
  border-radius: 50%; inset-inline-end: -80px; inset-block-start: -100px;
}
.cta h2 { color: #fff; font-size: clamp(1.9rem, 3vw, 3rem); margin-block-end: 12px; }
.cta p { margin: 0; max-width: 690px; }
.cta .button { position: relative; z-index: 1; background: #fff; color: var(--maroon); }

.site-footer { background: #0c2035; color: rgba(255,255,255,.74); padding-block: 72px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr 1fr; gap: 44px; }
.footer-logo { width: 270px; height: auto; margin-block-end: 18px; }
.site-footer h3 { color: #fff; font-size: .95rem; font-weight: 700; margin-block-end: 17px; }
.footer-links { display: grid; gap: 9px; font-size: .86rem; line-height: 1.75; }
.footer-links a:hover, .footer-consent-link:hover { color: #fff; }
.footer-consent-link { border: 0; background: transparent; color: inherit; text-align: start; padding: 0; }
.footer-meta {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 28px;
  margin-block-start: 48px; padding-block-start: 22px; border-block-start: 1px solid rgba(255,255,255,.12);
  font-size: .78rem;
}
.footer-disclaimer { max-width: 640px; color: rgba(255,255,255,.5); }

.whatsapp {
  position: fixed; inset-inline-end: 20px; inset-block-end: 20px;
  width: 58px; height: 58px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #1f9d62; color: #fff; font-weight: 900;
  box-shadow: 0 14px 32px rgba(0,0,0,.22); z-index: 1100;
}

.analytics-consent {
  position: fixed; z-index: 1400; inset-inline: 50%; transform: translateX(50%);
  inset-block-end: 18px; width: min(calc(100% - 36px), 920px); padding: 20px;
  border-radius: 20px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px;
}
html[dir="ltr"] .analytics-consent { transform: translateX(-50%); }
.analytics-consent[hidden] { display: none; }
.analytics-consent-copy strong { color: var(--navy); }
.analytics-consent-copy p { margin: 4px 0; color: var(--muted); font-size: .88rem; }
.analytics-consent-copy a { color: var(--maroon); font-weight: 800; font-size: .84rem; }
.analytics-consent-actions { display: flex; gap: 10px; }
.consent-reject { background: #fff; color: var(--navy); border-color: var(--line); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-links {
    position: fixed; inset: 121px 20px auto 20px; display: none; flex-direction: column;
    align-items: stretch; gap: 0; padding: 14px; border-radius: 18px;
    background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 12px; border-radius: 10px; }
  .nav-links a:hover { background: var(--mist); }
  .nav-links a::after { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-actions .button { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .topbar { display: none; }
  .nav { min-height: 72px; }
  .brand img { width: 205px; }
  .nav-links { inset-block-start: 82px; }
  .hero-grid, .split, .section-heading { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 54px 68px; gap: 42px; }
  .hero-media { min-height: 430px; }
  .hero-image, html[dir="rtl"] .hero-image {
    inset: 0 0 0 30px; width: calc(100% - 30px); border-radius: 150px 22px 22px 22px;
  }
  html[dir="rtl"] .hero-image { inset: 0 30px 0 0; }
  .hero-card { width: 185px; padding: 18px; }
  .section { padding-block: 72px; }
  .section-sm { padding-block: 52px; }
  .section-heading { gap: 14px; margin-block-end: 34px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .fact-strip { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-inline-end: 0; }
  .fact:nth-child(-n+2) { border-block-end: 1px solid var(--line); }
  .process { grid-template-columns: 1fr; }
  .split { gap: 42px; }
  .split-media img { min-height: 400px; }
  .property-notice { grid-template-columns: 1fr; padding: 34px 26px; }
  .cta { grid-template-columns: 1fr; padding: 34px 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-meta { flex-direction: column; }
  .analytics-consent { grid-template-columns: 1fr; gap: 16px; inset-block-end: 10px; width: min(calc(100% - 20px), 820px); padding: 18px; }
  .analytics-consent-actions { flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.4rem); }
  .hero-media { min-height: 360px; }
  .hero-card { inset-block-end: 20px; }
  .fact { padding: 18px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

html[dir="rtl"] p,
html[dir="rtl"] li,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .topbar,
html[dir="rtl"] .nav-links { line-height: 1.85; }

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .button,
html[dir="rtl"] .kicker,
html[dir="rtl"] .eyebrow {
  font-family: "IBM Plex Sans Arabic", "Noto Sans Arabic", Tahoma, Arial, sans-serif;
}
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .kicker { font-weight: 700; font-size: .79rem; }
html[dir="rtl"] .button,
html[dir="rtl"] .nav-links { font-weight: 600; }

.service-card-body h3,
.insight-card h3 { min-height: 2.85em; }

.footer-brand-original {
  display: inline-flex; align-items: center; justify-content: center;
  width: 220px; min-height: 220px; padding: 13px;
  margin-block-end: 18px; border-radius: 22px;
  background: #fff; box-shadow: 0 12px 34px rgba(0,0,0,.16);
}
.footer-brand-original img { display:block; width:100%; height:auto; object-fit:contain; }
.footer-intro { max-width:300px; font-size:.88rem; line-height:1.8; }

@media (max-width:760px) {
  .footer-brand-original { width:185px; min-height:185px; }
  h1 { font-size:clamp(2.2rem,10vw,3.1rem); }
}


/* Footer cache-safe correction */
.footer-brand-card-v2 {
  width: 290px;
  max-width: 100%;
  min-height: 0;
  margin-block-end: 18px;
  padding: 10px 14px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0,0,0,.16);
  overflow: hidden;
}
.footer-brand-card-v2 img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 82px;
  object-fit: contain;
  object-position: center;
}
.site-footer .footer-grid > div:first-child {
  min-width: 0;
  align-self: start;
}
@media (max-width: 760px) {
  .footer-brand-card-v2 { width: 250px; }
  .footer-brand-card-v2 img { max-height: 72px; }
}


/* V3 — Global image proportion system */
:root {
  --image-radius: 20px;
  --image-card-height: 250px;
  --image-insight-height: 220px;
  --image-split-height: 500px;
}

/* Service and insight cards */
.service-card,
.insight-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.service-card-image,
.insight-card .service-card-image {
  display: block;
  width: 100%;
  height: var(--image-card-height);
  max-height: var(--image-card-height);
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  flex: 0 0 var(--image-card-height);
}

.insight-card .service-card-image {
  height: var(--image-insight-height);
  max-height: var(--image-insight-height);
  flex-basis: var(--image-insight-height);
}

/* About / why image */
.split-media {
  min-width: 0;
  overflow: visible;
}
.split-media img {
  display: block;
  width: 100%;
  height: var(--image-split-height);
  min-height: 0;
  max-height: var(--image-split-height);
  object-fit: cover;
  object-position: center;
  border-radius: var(--image-radius);
}

/* Hero image */
.hero-media {
  min-height: 510px;
}
.hero-image {
  max-height: 510px;
  object-fit: cover;
  object-position: center;
}

/* Force card grids to align cleanly */
.grid-3,
.grid-4 {
  align-items: stretch;
}
.service-card-body {
  min-height: 230px;
}
.insight-card .service-card-body {
  min-height: 210px;
}

/* Unified footer brand: exact same logo as the header */
.footer-brand-unified {
  width: 285px;
  max-width: 100%;
  margin-block-end: 18px;
}
.footer-brand-unified img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 78px;
  object-fit: contain;
  object-position: center;
}

/* Remove old footer-card behaviours if any stale selector survives */
.footer-brand-card-v2,
.footer-brand-original {
  width: auto;
  min-height: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

/* Responsive image system */
@media (max-width: 1020px) {
  :root {
    --image-card-height: 230px;
    --image-insight-height: 210px;
    --image-split-height: 440px;
  }
  .hero-media { min-height: 460px; }
  .hero-image { max-height: 460px; }
}

@media (max-width: 760px) {
  :root {
    --image-card-height: 220px;
    --image-insight-height: 200px;
    --image-split-height: 380px;
  }
  .hero-media { min-height: 390px; }
  .hero-image { max-height: 390px; }
  .service-card-body,
  .insight-card .service-card-body { min-height: 0; }
  .footer-brand-unified { width: 245px; }
}

@media (max-width: 520px) {
  :root {
    --image-card-height: 205px;
    --image-insight-height: 190px;
    --image-split-height: 330px;
  }
  .hero-media { min-height: 350px; }
  .hero-image { max-height: 350px; }
}


/* V4 — all content is visible by default */
.reveal,
.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}

.service-card,
.insight-card,
.split-media,
.hero-media,
.property-notice,
.cta {
  opacity: 1 !important;
  visibility: visible !important;
}

.service-card-image {
  display: block !important;
  width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.insight-card .service-card-image {
  height: 210px !important;
  min-height: 210px !important;
  max-height: 210px !important;
}

.split-media img {
  display: block !important;
  width: 100% !important;
  height: 470px !important;
  min-height: 470px !important;
  max-height: 470px !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-media {
  min-height: 510px !important;
  max-height: 510px !important;
}
.hero-image {
  display: block !important;
  height: 510px !important;
  min-height: 510px !important;
  max-height: 510px !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.footer-logo-header-clone {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: 100% !important;
  padding: 7px 10px !important;
  margin-block-end: 18px !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  overflow: hidden !important;
}
.footer-logo-header-clone img {
  display: block !important;
  width: 270px !important;
  max-width: 270px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
}

.footer-brand-unified,
.footer-brand-card-v2,
.footer-brand-original {
  width: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

@media (max-width: 1020px) {
  .service-card-image {
    height: 225px !important;
    min-height: 225px !important;
    max-height: 225px !important;
  }
  .insight-card .service-card-image {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
  }
  .split-media img {
    height: 420px !important;
    min-height: 420px !important;
    max-height: 420px !important;
  }
}

@media (max-width: 760px) {
  .footer-logo-header-clone img {
    width: 205px !important;
    max-width: 205px !important;
  }
  .service-card-image {
    height: 215px !important;
    min-height: 215px !important;
    max-height: 215px !important;
  }
  .insight-card .service-card-image {
    height: 195px !important;
    min-height: 195px !important;
    max-height: 195px !important;
  }
  .split-media img {
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
  }
}

@media (max-width: 520px) {
  .service-card-image {
    height: 200px !important;
    min-height: 200px !important;
    max-height: 200px !important;
  }
  .insight-card .service-card-image {
    height: 185px !important;
    min-height: 185px !important;
    max-height: 185px !important;
  }
  .split-media img {
    height: 315px !important;
    min-height: 315px !important;
    max-height: 315px !important;
  }
}
