:root {
  --green: #29d84f;
  --green-dark: #0fb33a;
  --card-hover-orange: #ff8a00;
  --navy: #10182e;
  --navy-soft: rgba(11, 20, 42, .93);
  --ink: #202436;
  --muted: #6e7282;
  --surface: #fffafc;
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Cairo", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; right: 12px; z-index: 999; padding: 10px 16px; background: white; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 98px;
  background: linear-gradient(90deg, rgba(7,13,30,.85), rgba(12,21,44,.72));
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  background: rgba(7, 13, 30, .94);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 98px; display: flex; align-items: center; gap: 46px; }
.brand { margin-inline-start: 0; }
.brand img { width: 118px; height: auto; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 44px; margin-inline-start: 26px; }
.main-nav a { position: relative; color: #fff; font-weight: 600; font-size: 18px; opacity: .93; transition: color .25s ease, opacity .25s ease; }
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a.active { color: #fff; opacity: 1; }
.main-nav a::after { content: ""; position: absolute; right: 0; left: 0; bottom: -10px; height: 2px; background: var(--green); transform: scaleX(0); transition: transform .25s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.menu-toggle { display: none; margin-inline-start: auto; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.25); border-radius: 12px; background: rgba(255,255,255,.08); cursor: pointer; }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: white; transition: .25s; }

.hero { background: #081126; }
.slider { position: relative; overflow: hidden; }
.slider-track { position: relative; aspect-ratio: 1440 / 762; min-height: 510px; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.slide.is-active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slider::after { content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 2; background: linear-gradient(180deg, rgba(3,8,22,.06), transparent 60%); }
.slider-arrow { position: absolute; top: 50%; z-index: 4; translate: 0 -50%; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(10,18,38,.48); color: white; font-size: 32px; line-height: 1; cursor: pointer; backdrop-filter: blur(8px); transition: background .25s, transform .25s; }
.slider-arrow:hover { background: rgba(10,18,38,.8); transform: scale(1.06); }
.slider-prev { right: 24px; }
.slider-next { left: 24px; }
.slider-dots { position: absolute; z-index: 4; bottom: 24px; right: 50%; transform: translateX(50%); display: flex; gap: 9px; }
.slider-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.55); cursor: pointer; transition: width .25s, background .25s; }
.slider-dots button.is-active { width: 26px; background: var(--green); }

.services-section { padding: 58px 0 110px; background: linear-gradient(180deg,#fff9fc 0%,#fffafd 55%,#fff 100%); }
.section-heading { text-align: center; margin-bottom: 54px; }
.section-heading .eyebrow { margin: 0 0 18px; color: var(--green-dark); font-size: 21px; font-weight: 700; }
.section-heading .eyebrow::after { content: ""; display: block; width: 54px; height: 3px; margin: 14px auto 0; border-radius: 999px; background: var(--green); }
.section-heading p:not(.eyebrow) { margin: 5px 0; color: #666a76; font-size: 15px; }
.services-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 32px 30px; }
.service-card { position: relative; min-height: 330px; overflow: hidden; border-radius: var(--radius); box-shadow: 0 16px 30px rgba(38,22,75,.15); background: #17203b; isolation: isolate; }
.service-card > img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; transition: transform .5s ease, filter .5s ease; }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(5,10,24,.16) 65%, rgba(5,10,24,.4)); pointer-events: none; }
.card-panel { position: absolute; z-index: 2; right: 12px; left: 12px; bottom: 12px; min-height: 102px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: var(--navy-soft); color: white; backdrop-filter: blur(8px); transition: transform .3s ease, background .3s ease; }
.card-panel h2 { margin: 0 0 7px; color: #c8a8ff; font-size: 15px; font-weight: 700; transition: color .25s ease; }
.card-panel.featured h2 { color: #c8a8ff; }
.card-panel p { margin: 0; max-width: 270px; color: rgba(255,255,255,.88); font-size: 12.5px; line-height: 1.8; }
.card-arrow { flex: 0 0 38px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; font-size: 19px; transition: transform .25s, background .25s, border-color .25s, color .25s; }
.featured .card-arrow { border-color: rgba(255,255,255,.35); background: transparent; color: #fff; }
.service-card:hover > img { transform: scale(1.055); filter: saturate(1.06); }
.service-card:hover .card-panel { transform: translateY(-4px); background: rgba(9,17,37,.97); }
.service-card:hover .card-panel h2 { color: var(--card-hover-orange); }
.service-card:hover .card-arrow { transform: translateX(-4px); border-color: var(--card-hover-orange); background: var(--card-hover-orange); color: #fff; }

.site-footer { min-height: 72px; display: grid; place-items: center; padding: 20px; background: #10182e; color: #bdc3d2; text-align: center; font-size: 13px; }
.site-footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }



.qa-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.qa-page-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #dfe1e8;
  border-radius: 12px;
  background: #fff;
  color: #17203b;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(20,24,47,.06);
  transition: background .2s, color .2s, border-color .2s, transform .2s, box-shadow .2s;
}
.qa-page-btn:hover:not(:disabled),
.qa-page-btn.is-active {
  border-color: var(--card-hover-orange);
  background: var(--card-hover-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255,138,0,.22);
}
.qa-page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}
.qa-page-nav {
  min-width: 88px;
}

@media (max-width: 980px) {
  .site-header, .header-inner { min-height: 82px; }
  .brand img { width: 96px; }
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: calc(100% + 8px); right: 20px; left: 20px; display: grid; gap: 0; padding: 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 16px; background: rgba(9,17,37,.98); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 14px 12px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .slider-track { min-height: 500px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--container)); }
  .slider-track { min-height: 420px; aspect-ratio: auto; }
  .slide img { object-position: center; }
  .slider-arrow { width: 40px; height: 40px; font-size: 26px; }
  .slider-prev { right: 12px; }
  .slider-next { left: 12px; }
  .services-section { padding: 44px 0 72px; }
  .section-heading { margin-bottom: 34px; }
  .section-heading .eyebrow { font-size: 19px; }
  .section-heading p:not(.eyebrow) { font-size: 13px; }
  .services-grid { grid-template-columns: 1fr; gap: 22px; }
  .service-card, .service-card > img { min-height: 310px; }
  .card-panel { min-height: 98px; }
}

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

/* =========================
   Ask Googan page
   ========================= */
.qa-page { background: #fffafc; }
.qa-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: end;
  padding: 170px 0 82px;
  overflow: hidden;
  background: #081126 url("../assets/images/hero-2.jpg") center 43% / cover no-repeat;
}
.qa-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,12,28,.94), rgba(7,14,33,.63) 52%, rgba(6,12,28,.78)),
    linear-gradient(180deg, rgba(8,15,34,.15), rgba(8,15,34,.87));
}
.qa-hero-content { position: relative; z-index: 1; color: #fff; }
.qa-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border: 1px solid rgba(41,216,79,.38);
  border-radius: 999px;
  background: rgba(41,216,79,.1);
  color: #68f288;
  font-size: 13px;
  font-weight: 700;
}
.qa-hero h1 { margin: 0 0 13px; font-size: clamp(42px, 5vw, 68px); line-height: 1.15; }
.qa-hero p { max-width: 700px; margin: 0; color: rgba(255,255,255,.77); font-size: 17px; line-height: 1.9; }
.qa-section { padding: 76px 0 110px; background: linear-gradient(180deg, #fff7fb, #fff 55%); }
.qa-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 42px; align-items: start; }
.qa-heading { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 30px; }
.qa-small-title { color: var(--green-dark); font-size: 14px; font-weight: 700; }
.qa-heading h2 { margin: 7px 0 0; color: #111a32; font-size: clamp(25px, 3vw, 36px); line-height: 1.45; }
.qa-search { width: min(310px, 100%); height: 50px; display: flex; align-items: center; gap: 10px; padding: 0 16px; border: 1px solid #e2e3ea; border-radius: 14px; background: #fff; box-shadow: 0 8px 24px rgba(20,24,47,.06); }
.qa-search svg { width: 20px; fill: none; stroke: #85899a; stroke-width: 1.8; stroke-linecap: round; }
.qa-search input { width: 100%; border: 0; outline: 0; background: transparent; color: #17203b; font: inherit; }
.qa-list { display: grid; gap: 17px; }
.qa-card { overflow: hidden; border: 1px solid #e8e7ed; border-radius: 18px; background: #fff; box-shadow: 0 13px 32px rgba(33,24,60,.07); transition: border-color .25s, box-shadow .25s, transform .25s; }
.qa-card:hover, .qa-card.is-open { border-color: rgba(255,138,0,.35); box-shadow: 0 18px 38px rgba(33,24,60,.11); }
.qa-card:hover { transform: translateY(-2px); }
.qa-question { width: 100%; display: grid; grid-template-columns: 190px minmax(0,1fr) 42px; align-items: center; gap: 24px; padding: 22px 24px; border: 0; background: transparent; text-align: right; cursor: pointer; color: #17203b; }
.qa-person { display: flex; align-items: center; gap: 11px; min-width: 0; }
.qa-avatar { flex: 0 0 43px; width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg,#182342,#0d142a); color: #fff; font-weight: 700; box-shadow: inset 0 0 0 2px rgba(255,255,255,.07); transition: background .25s; }
.qa-person strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.qa-person small { display: block; margin-top: 3px; color: #888b98; font-size: 11px; }
.qa-question-text { font-size: 16px; font-weight: 700; line-height: 1.7; }
.qa-toggle { position: relative; width: 38px; height: 38px; border: 1px solid #dfe1e8; border-radius: 50%; transition: background .25s, border-color .25s, transform .25s; }
.qa-toggle::before, .qa-toggle::after { content: ""; position: absolute; top: 50%; left: 50%; width: 13px; height: 2px; border-radius: 2px; background: #31384e; transform: translate(-50%,-50%); transition: transform .25s, background .25s; }
.qa-toggle::after { transform: translate(-50%,-50%) rotate(90deg); }
.qa-card.is-open .qa-avatar, .qa-card:hover .qa-avatar { background: var(--card-hover-orange); }
.qa-card.is-open .qa-toggle, .qa-card:hover .qa-toggle { border-color: var(--card-hover-orange); background: var(--card-hover-orange); }
.qa-card.is-open .qa-toggle::before, .qa-card.is-open .qa-toggle::after, .qa-card:hover .qa-toggle::before, .qa-card:hover .qa-toggle::after { background: #fff; }
.qa-card.is-open .qa-toggle::after { transform: translate(-50%,-50%) rotate(0deg); }
.qa-answer { border-top: 1px solid #efedf2; }
.qa-answer-inner { margin: 0 24px 24px; padding: 20px 22px; border-radius: 14px; background: #111a31; color: #fff; }
.answer-label { display: inline-block; margin-bottom: 9px; color: #ff9f2e; font-size: 13px; font-weight: 700; }
.qa-answer p { margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 2; }
.qa-empty { padding: 32px; border: 1px dashed #d9dae2; border-radius: 18px; text-align: center; color: #777b89; background: #fff; }
.ask-box { position: sticky; top: 124px; padding: 30px; border-radius: 22px; background: #10182e; color: #fff; box-shadow: 0 22px 50px rgba(16,24,46,.2); }
.ask-box::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(circle at 10% 0%, rgba(255,138,0,.17), transparent 36%); }
.ask-box > * { position: relative; z-index: 1; }
.ask-icon { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 17px; border-radius: 16px; background: var(--card-hover-orange); color: #fff; font-size: 28px; font-weight: 700; }
.ask-box h2 { margin: 0 0 9px; font-size: 25px; }
.ask-box > p { margin: 0 0 25px; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.9; }
.ask-form { display: grid; gap: 14px; }
.ask-form label span { display: block; margin-bottom: 7px; color: rgba(255,255,255,.79); font-size: 12px; font-weight: 600; }
.ask-form input, .ask-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; padding: 12px 13px; outline: 0; background: rgba(255,255,255,.065); color: #fff; font: inherit; resize: vertical; transition: border-color .2s, background .2s; }
.ask-form input::placeholder, .ask-form textarea::placeholder { color: rgba(255,255,255,.38); }
.ask-form input:focus, .ask-form textarea:focus { border-color: var(--card-hover-orange); background: rgba(255,255,255,.09); }
.ask-submit { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 12px; border: 0; border-radius: 12px; background: var(--card-hover-orange); color: #fff; font-weight: 700; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.ask-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,138,0,.27); }
.ask-submit span { font-size: 20px; transition: transform .2s; }
.ask-submit:hover span { transform: translateX(-4px); }
.form-status { min-height: 20px; margin: 0; color: #73ee8e; font-size: 12px; text-align: center; }

@media (max-width: 980px) {
  .qa-hero { min-height: 410px; padding-top: 140px; }
  .qa-layout { grid-template-columns: 1fr; }
  .ask-box { position: relative; top: auto; max-width: 650px; width: 100%; margin-inline: auto; }
}
@media (max-width: 760px) {
  .qa-section { padding: 52px 0 76px; }
  .qa-heading { align-items: stretch; flex-direction: column; }
  .qa-search { width: 100%; }
  .qa-question { grid-template-columns: 1fr 40px; gap: 14px; padding: 19px 18px; }
  .qa-person { grid-column: 1 / -1; }
  .qa-question-text { font-size: 15px; }
  .qa-toggle { grid-column: 2; grid-row: 2; }
  .qa-answer-inner { margin: 0 16px 16px; padding: 17px; }
}
@media (max-width: 480px) {
  .qa-hero { min-height: 370px; padding-bottom: 56px; }
  .qa-hero h1 { font-size: 39px; }
  .qa-hero p { font-size: 14px; }
  .ask-box { padding: 24px 20px; }
}

/* =========================
   About page
   ========================= */
.about-page { background: #fffafc; }
.about-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: end;
  padding: 180px 0 88px;
  overflow: hidden;
  background: #081126 url("../assets/images/hero-1.png") center 42% / cover no-repeat;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,12,28,.95), rgba(8,15,34,.58) 54%, rgba(6,12,28,.78)),
    linear-gradient(180deg, rgba(8,15,34,.12), rgba(8,15,34,.88));
}
.about-hero-content { position: relative; z-index: 1; max-width: 760px; color: #fff; }
.about-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 15px;
  border: 1px solid rgba(255,138,0,.42);
  border-radius: 999px;
  background: rgba(255,138,0,.11);
  color: #ffad4d;
  font-size: 13px;
  font-weight: 700;
}
.about-hero h1 { margin: 0 0 14px; font-size: clamp(44px, 5vw, 70px); line-height: 1.15; }
.about-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.8); font-size: 18px; line-height: 2; }
.about-intro { padding: 90px 0 78px; background: linear-gradient(180deg,#fff7fb,#fff 68%); }
.about-intro-grid { display: grid; grid-template-columns: minmax(0,1.02fr) minmax(0,.98fr); gap: 70px; align-items: center; }
.section-label { display: inline-block; color: var(--green-dark); font-size: 14px; font-weight: 700; }
.about-copy h2, .about-section-heading h2, .mission-card h2, .about-final-inner h2 { margin: 10px 0 20px; color: #111a32; font-size: clamp(27px,3.4vw,44px); line-height: 1.5; }
.about-copy p { margin: 0 0 16px; color: #676c7a; font-size: 15px; line-height: 2.1; }
.about-cta { min-height: 50px; display: inline-flex; align-items: center; gap: 12px; margin-top: 16px; padding: 0 22px; border-radius: 13px; background: var(--card-hover-orange); color: #fff; font-weight: 700; box-shadow: 0 12px 28px rgba(255,138,0,.22); transition: transform .2s, box-shadow .2s; }
.about-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(255,138,0,.3); }
.about-cta span { font-size: 20px; transition: transform .2s; }
.about-cta:hover span { transform: translateX(-4px); }
.about-visual { position: relative; }
.about-visual > img { width: 100%; min-height: 430px; object-fit: cover; border-radius: 24px; box-shadow: 0 24px 55px rgba(21,25,54,.2); }
.about-visual-card { position: absolute; right: 24px; left: 24px; bottom: 24px; padding: 20px 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 17px; background: rgba(11,20,42,.91); color: #fff; backdrop-filter: blur(10px); }
.about-visual-card strong { display: block; margin-bottom: 5px; color: #ffad4d; font-size: 17px; }
.about-visual-card span { color: rgba(255,255,255,.76); font-size: 13px; }
.about-stats { padding: 0 0 84px; background: #fff; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.stat-card { padding: 29px 24px; border: 1px solid #ece9ef; border-radius: 18px; background: #fff; text-align: center; box-shadow: 0 15px 34px rgba(28,20,55,.07); transition: transform .25s, border-color .25s; }
.stat-card:hover { transform: translateY(-6px); border-color: rgba(255,138,0,.38); }
.stat-card strong { display: block; margin-bottom: 7px; color: var(--card-hover-orange); font-size: 35px; line-height: 1; }
.stat-card span { color: #737786; font-size: 13px; }
.about-values { padding: 88px 0 102px; background: #10182e; color: #fff; }
.about-section-heading { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.about-values .about-section-heading h2 { color: #fff; }
.about-section-heading p { margin: 0; color: #767b89; line-height: 1.9; }
.about-values .about-section-heading p { color: rgba(255,255,255,.64); }
.values-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.value-card { min-height: 250px; padding: 28px 24px; border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); transition: transform .25s, border-color .25s, background .25s; }
.value-card:hover { transform: translateY(-6px); border-color: rgba(255,138,0,.42); background: rgba(255,255,255,.07); }
.value-number { display: inline-grid; place-items: center; width: 46px; height: 46px; margin-bottom: 24px; border-radius: 14px; background: rgba(255,138,0,.13); color: #ff9f2e; font-weight: 700; }
.value-card h3 { margin: 0 0 12px; color: #fff; font-size: 21px; }
.value-card p { margin: 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 2; }
.about-mission { padding: 95px 0; background: linear-gradient(180deg,#fff,#fff8fb); }
.mission-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px; }
.mission-card { display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 34px; border: 1px solid #ece9ef; border-radius: 22px; background: #fff; box-shadow: 0 16px 38px rgba(30,22,58,.07); }
.mission-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 18px; background: #10182e; color: #ff9f2e; font-size: 28px; }
.mission-card h2 { margin: 8px 0 12px; font-size: 24px; }
.mission-card p { margin: 0; color: #717584; font-size: 14px; line-height: 2; }
.about-process { padding: 90px 0 105px; background: #fff; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 22px; }
.process-step { position: relative; padding: 28px 22px; border-radius: 19px; background: #fff8fb; border: 1px solid #eee8ed; }
.process-step span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 20px; border-radius: 50%; background: var(--card-hover-orange); color: #fff; font-weight: 700; }
.process-step h3 { margin: 0 0 10px; color: #151d35; font-size: 18px; }
.process-step p { margin: 0; color: #747887; font-size: 13px; line-height: 1.9; }
.about-final-cta { padding: 0 0 90px; background: #fff; }
.about-final-inner { display: flex; align-items: center; justify-content: space-between; gap: 34px; padding: 42px 46px; border-radius: 24px; background: #10182e; color: #fff; box-shadow: 0 22px 50px rgba(16,24,46,.18); }
.about-final-inner .section-label { color: #ffad4d; }
.about-final-inner h2 { margin-bottom: 8px; color: #fff; font-size: clamp(25px,3vw,37px); }
.about-final-inner p { margin: 0; color: rgba(255,255,255,.67); }
.about-cta.light { flex: 0 0 auto; margin-top: 0; background: #fff; color: #10182e; box-shadow: none; }

@media (max-width: 980px) {
  .about-hero { min-height: 430px; padding-top: 150px; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-visual > img { min-height: 390px; }
  .about-stats-grid, .values-grid, .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .mission-grid { grid-template-columns: 1fr; }
  .about-final-inner { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .about-hero { min-height: 390px; padding: 145px 0 58px; }
  .about-hero p { font-size: 14px; }
  .about-intro, .about-values, .about-mission, .about-process { padding-top: 64px; padding-bottom: 72px; }
  .about-visual > img { min-height: 330px; }
  .about-visual-card { right: 14px; left: 14px; bottom: 14px; }
  .about-stats-grid, .values-grid, .process-grid { grid-template-columns: 1fr; }
  .mission-card { grid-template-columns: 1fr; padding: 26px 22px; }
  .about-final-inner { padding: 30px 24px; }
}

/* =========================
   Contact page
   ========================= */
.contact-page { background: #fffafc; }
.contact-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 170px 0 78px;
  overflow: hidden;
  background: #081126 url("../assets/images/hero-1.png") center 48% / cover no-repeat;
}
.contact-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(6,12,28,.94),rgba(8,15,34,.58) 58%,rgba(6,12,28,.8)),linear-gradient(180deg,rgba(8,15,34,.2),rgba(8,15,34,.9)); }
.contact-hero-content { position: relative; z-index: 1; max-width: 760px; color: #fff; }
.contact-kicker { display: inline-flex; margin-bottom: 15px; padding: 8px 15px; border: 1px solid rgba(255,138,0,.4); border-radius: 999px; background: rgba(255,138,0,.12); color: #ffad4d; font-size: 13px; font-weight: 700; }
.contact-hero h1 { margin: 0 0 14px; font-size: clamp(40px,5vw,66px); line-height: 1.2; }
.contact-hero p { max-width: 680px; margin: 0; color: rgba(255,255,255,.78); font-size: 17px; line-height: 2; }
.contact-section { padding: 70px 0 90px; background: #fffafc; color: #fff; }
.contact-cards { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; margin-bottom: 42px; }
.contact-info-card { min-height: 112px; display: flex; align-items: center; gap: 16px; padding: 22px; border: 1px solid #253458; border-radius: 15px; background: #111c3b; color: #fff; transition: transform .25s,border-color .25s,box-shadow .25s; }
.contact-info-card:hover { transform: translateY(-5px); border-color: rgba(255,138,0,.55); box-shadow: 0 16px 34px rgba(0,0,0,.24); }
.contact-info-icon { flex: 0 0 46px; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 11px; font-size: 21px; font-weight: 700; }
.phone-icon { color: #00e58b; background: rgba(0,229,139,.11); }
.mail-icon { color: #4b8cff; background: rgba(75,140,255,.12); }
.location-icon { color: #ff9a24; background: rgba(255,154,36,.12); }
.time-icon { color: #9f6cff; background: rgba(159,108,255,.13); }
.contact-info-card strong { display: block; margin-bottom: 5px; font-size: 15px; }
.contact-info-card small { display: block; color: #8fa2d0; font-size: 12px; line-height: 1.7; }
.contact-main-grid { display: grid; grid-template-columns: minmax(0,1.42fr) minmax(330px,.95fr); gap: 38px; align-items: stretch; }
.contact-form-card { padding: 34px; border: 1px solid #26375d; border-radius: 17px; background: #111c3b; box-shadow: 0 20px 45px rgba(0,0,0,.22); }
.contact-form-heading span { color: #ff9a24; font-size: 12px; font-weight: 700; }
.contact-form-heading h2 { margin: 7px 0 8px; font-size: 27px; }
.contact-form-heading p { margin: 0 0 28px; color: #8ea0cb; font-size: 13px; line-height: 1.9; }
.contact-form { display: grid; gap: 20px; }
.contact-fields-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.contact-form label > span { display: block; margin-bottom: 8px; color: #9cb0dd; font-size: 12px; font-weight: 600; }
.contact-form label b { color: #ff5a65; }
.contact-form input,.contact-form textarea { width: 100%; border: 1px solid #24345b; border-radius: 9px; padding: 13px 14px; outline: 0; background: #080f29; color: #fff; font: inherit; resize: vertical; transition: border-color .2s,box-shadow .2s,background .2s; }
.contact-form input:focus,.contact-form textarea:focus { border-color: #ff8a00; background: #0a1331; box-shadow: 0 0 0 3px rgba(255,138,0,.1); }
.contact-submit { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 12px; border: 0; border-radius: 999px; background: linear-gradient(90deg,#ff8a00,#ffad31); color: #fff; font: inherit; font-weight: 700; cursor: pointer; transition: transform .2s,box-shadow .2s; }
.contact-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,138,0,.28); }
.contact-submit span { font-size: 20px; transition: transform .2s; }
.contact-submit:hover span { transform: translateX(-4px); }
.contact-form-status { min-height: 20px; margin: -6px 0 0; color: #69e69a; text-align: center; font-size: 12px; }
.contact-map-card { position: relative; min-height: 560px; overflow: hidden; border: 1px solid #26375d; border-radius: 17px; background: #111c3b; box-shadow: 0 20px 45px rgba(0,0,0,.22); }
.contact-map-card iframe { width: 100%; height: 100%; min-height: 560px; border: 0; filter: saturate(.88) contrast(1.02); }
.map-caption { position: absolute; right: 18px; left: 18px; bottom: 18px; display: flex; align-items: center; gap: 13px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(8,15,34,.92); backdrop-filter: blur(8px); }
.map-pin { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,138,0,.14); color: #ff8a00; }
.map-caption strong,.map-caption small { display: block; }
.map-caption small { margin-top: 3px; color: #91a4ce; font-size: 11px; }
@media (max-width: 1000px) { .contact-cards { grid-template-columns: repeat(2,minmax(0,1fr)); } .contact-main-grid { grid-template-columns: 1fr; } .contact-map-card,.contact-map-card iframe { min-height: 430px; } }
@media (max-width: 640px) { .contact-hero { min-height: 370px; padding: 145px 0 58px; } .contact-hero p { font-size: 14px; } .contact-section { padding: 52px 0 72px; } .contact-cards { grid-template-columns: 1fr; } .contact-main-grid { gap: 24px; } .contact-form-card { padding: 24px 19px; } .contact-fields-row { grid-template-columns: 1fr; gap: 20px; } .contact-map-card,.contact-map-card iframe { min-height: 360px; } }

/* =========================
   Service details page
   ========================= */
.service-details-page { background: #fffafc; }
.service-detail-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 185px 0 90px;
  overflow: hidden;
  background: #0a1228 url("../assets/images/service-feasibility.jpg") center 44% / cover no-repeat;
}
.service-detail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,rgba(7,13,31,.96),rgba(9,16,37,.74) 52%,rgba(9,16,37,.3)),linear-gradient(180deg,rgba(5,10,24,.2),rgba(5,10,24,.88));
}
.service-detail-hero-content { position: relative; z-index: 1; max-width: 760px; color: #fff; }
.service-detail-kicker,.service-section-label {
  display: inline-flex;
  color: #ff9f2e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
}
.service-detail-kicker { margin-bottom: 16px; padding: 8px 15px; border: 1px solid rgba(255,159,46,.42); border-radius: 999px; background: rgba(255,159,46,.12); }
.service-detail-hero h1 { margin: 0 0 16px; font-size: clamp(42px,5.2vw,72px); line-height: 1.18; }
.service-detail-hero p { max-width: 700px; margin: 0; color: rgba(255,255,255,.79); font-size: 17px; line-height: 2; }
.service-detail-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.service-primary-btn,.service-secondary-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s,box-shadow .25s,background .25s,color .25s;
}
.service-primary-btn { background: linear-gradient(90deg,#ff8500,#ffad35); color: #fff; box-shadow: 0 14px 30px rgba(255,133,0,.28); }
.service-primary-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(255,133,0,.36); }
.service-primary-btn span { font-size: 20px; transition: transform .25s; }
.service-primary-btn:hover span { transform: translateX(-4px); }
.service-secondary-btn { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.06); color: #fff; backdrop-filter: blur(8px); }
.service-secondary-btn:hover { background: rgba(255,255,255,.12); }
.service-detail-main { padding: 84px 0 100px; background: linear-gradient(180deg,#fff8fb,#fff 48%); }
.service-detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 42px; align-items: start; }
.service-detail-content { min-width: 0; }
.service-detail-image { position: relative; overflow: hidden; min-height: 470px; margin-bottom: 48px; border-radius: 25px; box-shadow: 0 22px 50px rgba(25,19,50,.14); }
.service-detail-image img { width: 100%; height: 100%; min-height: 470px; object-fit: cover; display: block; }
.service-image-badge { position: absolute; right: 22px; bottom: 22px; padding: 12px 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(11,18,40,.9); color: #fff; font-size: 13px; backdrop-filter: blur(8px); }
.service-copy,.service-benefits,.service-process { margin-bottom: 54px; }
.service-copy h2,.service-benefits h2,.service-process h2 { margin: 8px 0 17px; color: #111a32; font-size: clamp(27px,3vw,39px); line-height: 1.45; }
.service-copy p { margin: 0 0 15px; color: #6f7483; font-size: 15px; line-height: 2.1; }
.service-benefits-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; margin-top: 28px; }
.service-benefits-grid article { min-height: 210px; padding: 26px 23px; border: 1px solid #ece8ee; border-radius: 19px; background: #fff; box-shadow: 0 13px 32px rgba(27,21,53,.06); transition: transform .25s,border-color .25s,box-shadow .25s; }
.service-benefits-grid article:hover { transform: translateY(-5px); border-color: rgba(255,138,0,.35); box-shadow: 0 18px 38px rgba(27,21,53,.1); }
.service-benefits-grid article > span { display: inline-grid; place-items: center; width: 45px; height: 45px; margin-bottom: 20px; border-radius: 13px; background: #10182e; color: #ff9f2e; font-weight: 700; }
.service-benefits-grid h3 { margin: 0 0 11px; color: #151d35; font-size: 18px; }
.service-benefits-grid p { margin: 0; color: #757987; font-size: 13px; line-height: 1.95; }
.service-process-list { display: grid; gap: 15px; margin-top: 27px; }
.service-process-list > div { display: grid; grid-template-columns: 48px 1fr; gap: 17px; align-items: center; padding: 20px 22px; border: 1px solid #ece8ee; border-radius: 17px; background: #fff; }
.service-process-list b { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; background: #fff1e0; color: #ff8500; }
.service-process-list strong,.service-process-list small { display: block; }
.service-process-list strong { margin-bottom: 5px; color: #161e36; font-size: 16px; }
.service-process-list small { color: #777b89; font-size: 12.5px; line-height: 1.8; }
.service-detail-sidebar { position: sticky; top: 112px; display: grid; gap: 20px; }
.service-sidebar-card { padding: 27px 24px; border: 1px solid #e9e6ec; border-radius: 20px; background: #fff; box-shadow: 0 15px 38px rgba(30,22,58,.08); }
.service-sidebar-card h2,.service-sidebar-card h3 { margin: 8px 0 13px; color: #121a32; }
.service-sidebar-card h2 { font-size: 25px; line-height: 1.45; }
.service-sidebar-card h3 { font-size: 18px; }
.service-sidebar-card p { margin: 0 0 22px; color: #737786; font-size: 13px; line-height: 1.95; }
.service-sidebar-dark { border-color: #263555; background: #10182e; color: #fff; }
.service-sidebar-dark h2 { color: #fff; }
.service-sidebar-dark p { color: rgba(255,255,255,.66); }
.service-primary-btn.full { width: 100%; }
.service-feature-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.service-feature-list li { position: relative; padding-right: 24px; color: #6f7483; font-size: 13px; line-height: 1.8; }
.service-feature-list li::before { content: "✓"; position: absolute; right: 0; top: 0; color: #ff8a00; font-weight: 700; }
.service-contact-mini a { display: block; margin-top: 9px; color: #263250; font-size: 13px; direction: ltr; text-align: right; }
.service-contact-mini a:hover { color: #ff8500; }
.service-final-cta { padding: 0 0 90px; background: #fff; }
.service-final-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 42px 46px; border-radius: 24px; background: #10182e; color: #fff; box-shadow: 0 24px 54px rgba(16,24,46,.19); }
.service-final-inner h2 { margin: 8px 0 8px; color: #fff; font-size: clamp(25px,3vw,38px); }
.service-final-inner p { margin: 0; color: rgba(255,255,255,.65); }
.service-primary-btn.light { flex: 0 0 auto; background: #fff; color: #10182e; box-shadow: none; }
@media (max-width: 980px) {
  .service-detail-hero { min-height: 500px; padding-top: 165px; }
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-sidebar-dark { grid-column: 1/-1; }
  .service-final-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .service-detail-hero { min-height: 440px; padding: 145px 0 62px; }
  .service-detail-hero p { font-size: 14px; }
  .service-detail-main { padding: 58px 0 72px; }
  .service-detail-image,.service-detail-image img { min-height: 330px; }
  .service-benefits-grid { grid-template-columns: 1fr; }
  .service-detail-sidebar { grid-template-columns: 1fr; }
  .service-sidebar-dark { grid-column: auto; }
  .service-final-inner { padding: 30px 24px; }
  .service-primary-btn.light { width: 100%; }
}

/* Service details refinements: compact hero, white page background and no quote CTA */
.service-details-page,
.service-details-page main,
.service-detail-main {
  background: #fff;
}
.service-detail-hero {
  min-height: 330px;
  padding: 138px 0 62px;
  align-items: center;
  background-position: center 36%;
}
.service-detail-overlay {
  background: linear-gradient(180deg, rgba(7,13,31,.74), rgba(7,13,31,.88));
}
.service-detail-hero-content {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.service-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
.service-breadcrumb a { color: rgba(255,255,255,.84); }
.service-breadcrumb a:hover { color: #ff9f2e; }
.service-hero-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: #ff8a00;
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,138,0,.28);
  font-size: 20px;
}
.service-detail-hero h1 {
  margin: 0;
  font-size: clamp(30px,4vw,48px);
}
.service-detail-main { padding: 58px 0 82px; }
.service-detail-layout { gap: 34px; }
.service-detail-image { margin-bottom: 34px; }
.service-sidebar-dark { background: #10182e; }
.service-final-cta { display: none; }
@media (max-width: 980px) {
  .service-detail-hero { min-height: 300px; padding: 128px 0 54px; }
}
@media (max-width: 640px) {
  .service-detail-hero { min-height: 270px; padding: 118px 0 44px; }
  .service-detail-main { padding: 42px 0 60px; }
}

/* Language switcher */
.language-toggle {
  margin-inline-start: auto;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 54px;
  height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.language-toggle svg { width: 18px; height: 18px; fill: currentColor; }
.language-toggle:hover, .language-toggle:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
html[dir="ltr"] body { text-align: left; }
html[dir="ltr"] .main-nav a::after { right: 0; left: 0; }
@media (max-width: 900px) {
  .header-inner { gap: 12px; }
  .language-toggle { margin-inline-start: 0; margin-inline-end: auto; min-width: 50px; height: 40px; }
}

/* Mobile header order: menu at the far left, then language, logo at the right */
@media (max-width: 900px) {
  html[dir="rtl"] .header-inner .brand {
    order: 1;
    margin-inline-end: auto;
  }

  html[dir="rtl"] .header-inner .language-toggle {
    order: 2;
    margin: 0;
  }

  html[dir="rtl"] .header-inner .menu-toggle {
    order: 3;
    margin: 0;
  }
}
