/* Ensure font-display:swap even if browser ignores Google's CSS hint */
@font-face { font-family: 'Cairo'; font-display: swap; src: local('Cairo'); }
@font-face { font-family: 'Inter'; font-display: swap; src: local('Inter'); }

:root {
  --ink: #101522;
  --muted: #5b6473;
  --line: #dfe4ef;
  --paper: #ffffff;
  --soft: #f5f7fc;
  --green: #2645b4;
  --green-deep: #07163d;
  --green-bright: #3d63e6;
  --blue: #172b76;
  --gold: #bd8b35;
  --gold-soft: #f1d8a8;
  --shadow: 0 22px 60px rgba(8, 20, 54, 0.16);
  --radius: 8px;
  --section: clamp(56px, 7vw, 92px);
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Cairo', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

html[lang="en"] body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

img,
svg {
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: #fff;
  background: var(--green);
}

.icon-sprite {
  display: none;
}

.icon,
.button-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  min-height: 68px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  color: #fff;
  background: rgba(7, 18, 48, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-mark {
  width: 76px;
  height: 44px;
  padding: 4px 6px;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.logo-mark img {
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.15;
  white-space: nowrap;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.3;
  white-space: nowrap;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: #07163d;
  background: #fff;
  border-radius: 7px;
  font-weight: 800;
  font-size: 0.91rem;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(640px, 86svh, 820px);
  overflow: clip;
  color: #fff;
  background: var(--green-deep);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 15, 44, 0.95) 0%, rgba(8, 22, 58, 0.8) 42%, rgba(8, 22, 58, 0.28) 78%),
    linear-gradient(180deg, rgba(5, 15, 44, 0.5), rgba(5, 15, 44, 0.18) 48%, rgba(5, 15, 44, 0.8));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  padding-top: 100px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: normal;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.65rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #07163d;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 150px));
  gap: 14px;
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}

.hero-stats dt {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.83rem;
  line-height: 1.35;
}

.arabic-tag {
  width: fit-content;
  max-width: min(620px, 100%);
  margin: 22px 0 0;
  padding: 12px 15px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(18, 42, 111, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-size: 1rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  color: #fff;
  background: var(--green-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
  gap: 12px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  font-weight: 750;
}

.trust-item .icon {
  color: var(--gold-soft);
}

.section {
  padding: var(--section) 0;
}

.intro-section {
  background: var(--paper);
}

.intro-grid,
.split-section,
.proof-grid,
.locations-layout,
.faq-layout,
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.intro-grid h2,
.section-heading h2,
.proof-grid h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(1.85rem, 3.15vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro-section .section-kicker,
.services-section .section-kicker,
.process-section .section-kicker,
.faq-section .section-kicker,
.quote-section .section-kicker {
  color: var(--green);
}

.intro-copy p,
.section-heading p,
.proof-grid p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-copy {
  display: grid;
  gap: 18px;
  padding-top: 0;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 720px;
  margin-top: 14px;
}

.compact-heading {
  max-width: 520px;
  margin: 0;
}

.services-section {
  background: var(--soft);
}

.clients-section {
  background: linear-gradient(180deg, #ffffff, #f7faf8);
  border-top: 1px solid var(--line);
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.client-logo-card {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(14, 34, 29, 0.06);
}

.client-logo-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
}

.client-logo-card:hover img,
.client-logo-card:focus-within img {
  filter: grayscale(0);
  opacity: 1;
}

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

.service-card,
.process-step,
.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(14, 34, 29, 0.08);
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 286px;
  padding: 24px;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--green);
  background: linear-gradient(135deg, #e9edff, #f3f6ff);
  border: 1px solid #d9e1ff;
  border-radius: 8px;
}

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

.service-card h3,
.process-step h3 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.22;
}

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

.service-card a {
  align-self: end;
  width: fit-content;
  color: var(--green);
  font-weight: 850;
  border-bottom: 2px solid rgba(38, 69, 180, 0.28);
}

.industries-section {
  color: #fff;
  background:
    radial-gradient(circle at 15% 20%, rgba(61, 99, 230, 0.34), transparent 36%),
    linear-gradient(135deg, #07163d, #10265f 62%, #16214b);
}

.industries-section .section-kicker,
.industries-section .section-heading p {
  color: rgba(255, 255, 255, 0.74);
}

.industry-list {
  display: grid;
  gap: 12px;
}

.industry-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 76px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.industry-list span {
  color: var(--gold-soft);
  font-weight: 900;
}

.industry-list strong {
  font-size: 1rem;
  line-height: 1.32;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  min-height: 248px;
  padding: 24px;
}

.process-step span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--green);
  border-radius: 8px;
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 12px;
}

.proof-section {
  background: linear-gradient(180deg, #f8faf9, #eef4f1);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 780;
}

.proof-list .icon {
  color: var(--green);
}

.locations-section {
  background: var(--paper);
}

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

.location-grid a {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-deep);
  font-weight: 850;
  transition: border 180ms ease, transform 180ms ease, background 180ms ease;
}

.location-grid a:hover,
.location-grid a:focus-visible {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(38, 69, 180, 0.38);
}

.faq-section {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 26px;
  height: 26px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  color: var(--muted);
}

.quote-section {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7, 22, 61, 0.96), rgba(18, 38, 95, 0.98)),
    var(--green-deep);
}

.quote-section .section-kicker,
.quote-section p {
  color: rgba(255, 255, 255, 0.74);
}

.quote-copy {
  position: sticky;
  top: 120px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-methods a {
  display: grid;
  gap: 2px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-methods strong {
  color: #fff;
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row.full,
.form-submit,
.form-note {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: none;
  transition: border 160ms ease, box-shadow 160ms ease;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(38, 69, 180, 0.14);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 42px 0;
  color: rgba(255, 255, 255, 0.76);
  background: #06112f;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(180px, 0.8fr);
  gap: 28px;
  align-items: center;
}

.footer-brand {
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
  max-width: 520px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-meta {
  justify-self: end;
  text-align: right;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    padding: 8px;
    background: rgba(8, 23, 19, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 13px;
  }

  .header-end {
    justify-self: end;
  }

  .hero {
    min-height: clamp(650px, 84svh, 760px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 15, 44, 0.95), rgba(8, 22, 58, 0.74)),
      linear-gradient(180deg, rgba(5, 15, 44, 0.38), rgba(5, 15, 44, 0.84));
  }

  .hero h1 {
    max-width: 680px;
  }

  .trust-strip,
  .service-grid,
  .client-logo-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .split-section,
  .proof-grid,
  .locations-layout,
  .faq-layout,
  .quote-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .quote-copy {
    position: static;
  }

  .footer-meta {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 28px, 1160px);
    --section: 56px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    grid-template-columns: 1fr auto auto;
    gap: 10px;
  }

  .header-end {
    grid-column: 2;
    order: 2;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .logo-mark {
    width: 64px;
    height: 40px;
    padding: 4px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    grid-column: 3;
  }

  .nav-links {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: 86svh;
  }

  .hero-content {
    padding-top: 86px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-lede {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 24px;
  }

  .hero-stats div {
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 1.06rem;
  }

  .hero-stats dd {
    font-size: 0.72rem;
  }

  .arabic-tag {
    font-size: 0.9rem;
  }

  .trust-strip,
  .service-grid,
  .process-grid,
  .location-grid,
  .client-logo-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    min-height: 70px;
    text-align: left;
  }

  .service-card,
  .process-step {
    min-height: auto;
  }

  .industry-list div {
    grid-template-columns: 44px 1fr;
  }
}

@media (max-width: 520px) {
  .hero {
    min-height: 760px;
  }

  .section-shell,
  .hero-content.section-shell {
    width: min(calc(100% - 28px), 362px);
    margin-left: 14px;
    margin-right: auto;
  }

  .hero-stats,
  .arabic-tag {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: 760px;
    padding-bottom: 22px;
  }

  .hero-content {
    padding-top: 78px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
  }

  .hero-lede {
    margin-top: 14px;
    font-size: 0.94rem;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .button {
    min-height: 48px;
  }

}

/* ── Header end group (lang-switch + CTA) ────────────── */
.header-end {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Language switcher button ─────────────────────────── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease;
}

.lang-switch:hover,
.lang-switch:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

/* ── Arabic-only / English-only visibility helpers ────── */
.lang-en-only {
  display: none;
}

html[lang="en"] .lang-en-only {
  display: block;
}

/* ── RTL layout overrides ─────────────────────────────── */

/* Hero gradient: dark side should follow text start (right in RTL) */
[dir="rtl"] .hero-shade {
  background:
    linear-gradient(270deg, rgba(5, 15, 44, 0.95) 0%, rgba(8, 22, 58, 0.8) 42%, rgba(8, 22, 58, 0.28) 78%),
    linear-gradient(180deg, rgba(5, 15, 44, 0.5), rgba(5, 15, 44, 0.18) 48%, rgba(5, 15, 44, 0.8));
}

/* FAQ expand/collapse indicator moves to the left in RTL */
[dir="rtl"] .faq-list summary {
  padding: 22px 22px 22px 58px;
}

[dir="rtl"] .faq-list summary::after {
  right: auto;
  left: 22px;
}

/* ── Floating WhatsApp button ─────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.42);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.wa-float svg {
  width: 30px;
  height: 30px;
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

/* ── Header scroll state ──────────────────────────────── */
.site-header.is-scrolled {
  background: rgba(5, 14, 40, 0.97);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.36);
}

/* ── Scroll-reveal animations ─────────────────────────── */
.will-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.will-animate.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Location landmark (non-link address items) ───────── */
.location-landmark {
  display: flex;
  align-items: center;
  min-height: 68px;
  padding: 18px 20px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 600;
}

/* ── Service card hover lift ──────────────────────────── */
.service-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(14, 34, 29, 0.14);
  border-color: rgba(38, 69, 180, 0.22);
}

/* ── FAQ open/close transition via grid trick ─────────── */
.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
  overflow: hidden;
}

.faq-list details[open] .faq-body {
  grid-template-rows: 1fr;
}

.faq-body > p {
  overflow: hidden;
  margin: 0;
  padding: 0 22px 24px;
  color: var(--muted);
}

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