:root {
  --aqua-deep: #0077b6;
  --ocean: #00a6d6;
  --turquoise: #20c7b5;
  --sand: #ddb892;
  --beige: #f5e8d0;
  --orange: #f28c28;
  --navy: #052b3a;
  --navy-soft: #0b4052;
  --ink: #102f3b;
  --muted: #657c84;
  --surface: #f6f9f8;
  --line: rgba(5, 43, 58, .12);
  --white: #fff;
  --shadow: 0 24px 70px rgba(5, 43, 58, .12);
  --radius: 24px;
  --font-ar: "Cairo", "Segoe UI", Tahoma, sans-serif;
  --font-en: "Manrope", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-ar);
  overflow-x: hidden;
}

html[lang="en"] body {
  font-family: var(--font-en);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  transform: none;
}

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

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

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

button {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(32, 199, 181, .55);
  outline-offset: 3px;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 116px 0;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--navy);
  transition: opacity .55s ease, visibility .55s ease;
}

body.loaded .page-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 48px;
}

.loader-mark span {
  width: 8px;
  height: 18px;
  border-radius: 99px;
  background: var(--turquoise);
  animation: loaderWave 1s ease-in-out infinite;
}

.loader-mark span:nth-child(2) {
  height: 34px;
  animation-delay: .12s;
}

.loader-mark span:nth-child(3) {
  height: 24px;
  animation-delay: .24s;
}

@keyframes loaderWave {
  0%, 100% { transform: scaleY(.65); opacity: .45; }
  50% { transform: scaleY(1.25); opacity: 1; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  transition: background .35s ease, box-shadow .35s ease, color .35s ease, transform .35s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 42px rgba(5, 43, 58, .1);
  backdrop-filter: blur(18px);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand-logo {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .2));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 3px;
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: .12em;
  opacity: .72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 27px);
}

.desktop-nav a {
  position: relative;
  padding: 30px 0 28px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 19px;
  width: 0;
  height: 2px;
  margin: auto;
  background: var(--turquoise);
  transition: width .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  width: 100%;
}

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

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.social-links a:hover {
  color: var(--navy);
  border-color: var(--turquoise);
  background: var(--turquoise);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.social-links .social-dot {
  fill: currentColor;
  stroke: none;
}

.social-links .facebook-icon {
  fill: currentColor;
  stroke: none;
}

.header-social a {
  width: 36px;
  height: 36px;
  border-color: rgba(255, 255, 255, .28);
}

.header-social svg {
  width: 17px;
  height: 17px;
}

.site-header.scrolled .header-social a {
  color: var(--aqua-deep);
  border-color: rgba(5, 43, 58, .14);
  background: rgba(0, 166, 214, .06);
}

.site-header.scrolled .header-social a:hover {
  color: var(--white);
  border-color: var(--aqua-deep);
  background: var(--aqua-deep);
}

.lang-toggle,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.lang-toggle {
  gap: 6px;
  min-width: 55px;
  padding: 9px 4px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
}

.lang-toggle svg {
  width: 17px;
}

.header-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  transition: background .25s ease, border-color .25s ease;
}

.site-header.scrolled .header-whatsapp {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.header-whatsapp:hover {
  border-color: var(--turquoise);
  background: var(--turquoise);
}

.header-whatsapp svg {
  width: 18px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 23px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
}

.mobile-menu-social {
  margin-top: 8px;
}

.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  max-height: 1040px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-waterpark.webp") center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out both;
}

@keyframes heroZoom {
  from { transform: scale(1.1); }
  to { transform: scale(1.02); }
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 25, 34, .94) 0%, rgba(3, 25, 34, .73) 35%, rgba(3, 25, 34, .2) 66%, rgba(3, 25, 34, .12) 100%),
    linear-gradient(0deg, rgba(3, 25, 34, .57) 0%, transparent 45%);
}

html[dir="ltr"] .hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 25, 34, .94) 0%, rgba(3, 25, 34, .73) 35%, rgba(3, 25, 34, .2) 66%, rgba(3, 25, 34, .12) 100%),
    linear-gradient(0deg, rgba(3, 25, 34, .57) 0%, transparent 45%);
}

html[dir="rtl"] .hero-shade {
  background:
    linear-gradient(-90deg, rgba(3, 25, 34, .94) 0%, rgba(3, 25, 34, .73) 35%, rgba(3, 25, 34, .2) 66%, rgba(3, 25, 34, .12) 100%),
    linear-gradient(0deg, rgba(3, 25, 34, .57) 0%, transparent 45%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 68px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90' preserveAspectRatio='none'%3E%3Cpath d='M0 53c170-26 315 21 494 14 191-7 291-52 477-46 176 6 283 55 469 28v41H0Z' fill='%23ffffff'/%3E%3C/svg%3E") center bottom/100% 100% no-repeat;
  z-index: 3;
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: center;
  gap: 70px;
  height: 100%;
  padding-top: 96px;
  padding-bottom: 78px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--aqua-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.eyebrow.light {
  color: rgba(255, 255, 255, .76);
}

.eyebrow-dot {
  width: 27px;
  height: 2px;
  background: var(--turquoise);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(47px, 5vw, 78px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -.035em;
}

html[lang="en"] .hero h1 {
  font-size: clamp(45px, 4.7vw, 72px);
  line-height: 1.08;
}

.hero-copy > p {
  max-width: 680px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.95;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn svg {
  width: 18px;
  transition: transform .25s ease;
}

html[dir="rtl"] .btn:hover svg,
html[dir="rtl"] .text-link:hover svg,
html[dir="rtl"] .service-card a:hover svg,
html[dir="rtl"] .industry-cta a:hover svg {
  transform: translateX(-4px);
}

html[dir="ltr"] .btn:hover svg,
html[dir="ltr"] .text-link:hover svg,
html[dir="ltr"] .service-card a:hover svg,
html[dir="ltr"] .industry-cta a:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 14px 28px rgba(242, 140, 40, .26);
}

.btn-primary:hover {
  background: #e57914;
  box-shadow: 0 18px 35px rgba(242, 140, 40, .36);
}

.btn-glass {
  color: var(--white);
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .09);
  backdrop-filter: blur(12px);
}

.btn-glass:hover {
  border-color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .17);
}

.official-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  margin-top: 27px;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  line-height: 1.7;
}

.official-badge svg {
  flex: 0 0 23px;
  width: 23px;
  color: var(--turquoise);
}

.hero-card {
  position: relative;
  align-self: end;
  margin-bottom: 104px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 2px 22px 22px 22px;
  background: rgba(4, 38, 50, .68);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .22);
  backdrop-filter: blur(18px);
}

html[dir="ltr"] .hero-card {
  border-radius: 22px 2px 22px 22px;
}

.hero-card-index {
  position: absolute;
  inset: -14px auto auto -14px;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--turquoise);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 800;
}

html[dir="ltr"] .hero-card-index {
  inset: -14px -14px auto auto;
}

.hero-card > p {
  margin: 0 0 7px;
  color: var(--turquoise);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.5;
}

.hero-card-list {
  margin: 21px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.hero-card-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.hero-card-list span {
  color: rgba(255, 255, 255, .38);
  font-family: var(--font-en);
  font-size: 10px;
}

.hero-card-list strong {
  font-size: 12px;
}

.hero-card > a {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--turquoise);
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 800;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  inset: auto 50% 35px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transform: translateX(50%);
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-scroll i {
  position: relative;
  width: 1px;
  height: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, .24);
}

.hero-scroll i::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 16px;
  background: var(--turquoise);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  from { transform: translateY(-18px); }
  to { transform: translateY(42px); }
}

.water-orbs span {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  background: rgba(32, 199, 181, .06);
  box-shadow: inset 4px 4px 10px rgba(255, 255, 255, .18);
  animation: floatOrb 8s ease-in-out infinite;
}

.water-orbs span:nth-child(1) { top: 19%; left: 5%; width: 22px; height: 22px; }
.water-orbs span:nth-child(2) { top: 29%; left: 43%; width: 13px; height: 13px; animation-delay: 1s; }
.water-orbs span:nth-child(3) { top: 70%; left: 69%; width: 28px; height: 28px; animation-delay: 2.2s; }
.water-orbs span:nth-child(4) { top: 60%; left: 12%; width: 10px; height: 10px; animation-delay: 3s; }
.water-orbs span:nth-child(5) { top: 15%; left: 78%; width: 16px; height: 16px; animation-delay: 4s; }

@keyframes floatOrb {
  0%, 100% { transform: translateY(0); opacity: .2; }
  50% { transform: translateY(-27px); opacity: .8; }
}

.trust-strip {
  position: relative;
  z-index: 7;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-list > div {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 35px;
  padding: 0 21px;
  border-inline-end: 1px solid var(--line);
}

.trust-list > div:first-child {
  padding-inline-start: 0;
}

.trust-list > div:last-child {
  border-inline-end: 0;
}

.trust-list span {
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 800;
}

.trust-list strong {
  font-size: 11px;
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 90px;
}

.about-visual {
  position: relative;
  min-height: 590px;
}

.image-frame {
  position: absolute;
  inset: 0 9% 42px 0;
  overflow: hidden;
  border-radius: 7px 52px 7px 7px;
  box-shadow: var(--shadow);
}

html[dir="ltr"] .image-frame {
  inset: 0 0 42px 9%;
  border-radius: 52px 7px 7px 7px;
}

.image-frame::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 43, 58, .34), transparent 44%);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card {
  position: absolute;
  z-index: 3;
  inset: auto 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 205px;
  min-height: 152px;
  padding: 26px;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px 5px 5px 28px;
  box-shadow: 0 20px 50px rgba(5, 43, 58, .22);
}

html[dir="ltr"] .experience-card {
  inset: auto auto 0 0;
  border-radius: 5px 5px 28px 5px;
}

.experience-number {
  margin-bottom: 6px;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.experience-card span:last-child {
  font-size: 12px;
  line-height: 1.7;
}

.visual-stamp {
  position: absolute;
  z-index: 4;
  inset: 31px auto auto -25px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  color: var(--navy);
  background: var(--beige);
  box-shadow: 0 12px 34px rgba(5, 43, 58, .14);
}

html[dir="ltr"] .visual-stamp {
  inset: 31px -25px auto auto;
}

.visual-stamp svg {
  position: absolute;
  width: 104px;
  height: 104px;
  animation: stampSpin 18s linear infinite;
}

.visual-stamp text {
  fill: var(--navy);
  stroke: none;
  font-family: var(--font-en);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.visual-stamp > span {
  font-family: var(--font-en);
  font-size: 23px;
  font-weight: 800;
}

@keyframes stampSpin {
  to { transform: rotate(360deg); }
}

.section-copy h2,
.section-heading h2,
.why-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.35;
  letter-spacing: -.035em;
}

html[lang="en"] .section-copy h2,
html[lang="en"] .section-heading h2,
html[lang="en"] .why-copy h2,
html[lang="en"] .contact-copy h2 {
  line-height: 1.1;
}

.lead,
.section-heading > p,
.heading-row > p,
.why-copy > p,
.contact-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.about-points {
  display: grid;
  gap: 21px;
  margin-top: 32px;
}

.about-points > div {
  display: flex;
  gap: 17px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--line);
}

.point-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--aqua-deep);
  background: rgba(0, 166, 214, .09);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
}

.about-points h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.about-points p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 27px;
  color: var(--aqua-deep);
  font-size: 12px;
  font-weight: 800;
}

.text-link svg,
.service-card a svg,
.industry-cta a svg {
  width: 17px;
  transition: transform .25s ease;
}

.investment-section {
  position: relative;
  overflow: hidden;
  background: var(--surface);
}

.investment-section::before {
  content: "";
  position: absolute;
  top: -190px;
  inset-inline-end: -210px;
  width: 500px;
  height: 500px;
  border: 80px solid rgba(32, 199, 181, .04);
  border-radius: 50%;
}

.section-heading.centered {
  max-width: 770px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading.centered > p {
  max-width: 640px;
  margin-inline: auto;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.benefit-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(5, 43, 58, .08);
  border-radius: 18px;
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.benefit-card:hover {
  transform: translateY(-7px);
  border-color: rgba(32, 199, 181, .42);
  box-shadow: 0 20px 50px rgba(5, 43, 58, .1);
}

.card-number,
.service-index,
.industry-card > span {
  position: absolute;
  top: 26px;
  inset-inline-end: 27px;
  color: rgba(5, 43, 58, .28);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
}

.line-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 33px;
  border-radius: 17px;
  color: var(--aqua-deep);
  background: rgba(0, 166, 214, .08);
}

.line-icon svg {
  width: 31px;
  height: 31px;
}

.benefit-card h3 {
  margin: 0 0 9px;
  font-size: 19px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.benefit-card.accent-card {
  color: var(--white);
  border-color: var(--aqua-deep);
  background: var(--aqua-deep);
}

.benefit-card.accent-card .card-number,
.benefit-card.accent-card p {
  color: rgba(255, 255, 255, .68);
}

.benefit-card.accent-card .line-icon {
  color: var(--white);
  background: rgba(255, 255, 255, .12);
}

.heading-row {
  display: grid;
  grid-template-columns: 1.2fr .65fr;
  align-items: end;
  gap: 80px;
}

.heading-row > p {
  margin-bottom: 5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 58px;
}

.service-card {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  border-radius: 8px 31px 8px 8px;
  color: var(--white);
  background: var(--navy);
}

html[dir="ltr"] .service-card {
  border-radius: 31px 8px 8px 8px;
}

.service-card.service-featured {
  grid-row: span 2;
  min-height: 838px;
}

.service-card img,
.service-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-card img {
  object-fit: cover;
  transition: transform .6s ease;
}

.service-card:hover img {
  transform: scale(1.055);
}

.service-overlay {
  background: linear-gradient(0deg, rgba(3, 31, 41, .92), rgba(3, 31, 41, .08) 68%);
}

.service-card .service-index {
  z-index: 3;
  color: rgba(255, 255, 255, .55);
}

.service-content {
  position: absolute;
  z-index: 3;
  inset: auto 33px 33px;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 15px;
  color: var(--turquoise);
  background: rgba(5, 43, 58, .45);
  backdrop-filter: blur(8px);
}

.service-icon svg {
  width: 29px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 25px;
}

.service-card p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1.9;
}

.service-dark {
  background:
    radial-gradient(circle at 85% 15%, rgba(32, 199, 181, .18), transparent 28%),
    linear-gradient(135deg, #073445, #031f2a);
}

.service-dark::before,
.service-dark::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(32, 199, 181, .15);
  border-radius: 50%;
}

.service-dark::before { top: -100px; inset-inline-end: -70px; }
.service-dark::after { top: -70px; inset-inline-end: -100px; }

.service-dark a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 800;
}

.process-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 166, 214, .18), transparent 25%),
    linear-gradient(135deg, #052b3a, #031e29);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: radial-gradient(rgba(255, 255, 255, .28) .7px, transparent .7px);
  background-size: 16px 16px;
}

.process-section .section-heading {
  position: relative;
}

.process-section .section-heading p {
  color: rgba(255, 255, 255, .6);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 68px;
}

.process-line {
  position: absolute;
  top: 24px;
  inset-inline: 7%;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .14);
}

.process-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--aqua-deep), var(--turquoise));
  transition: width 2.2s ease;
}

.process-line.animated span {
  width: 100%;
}

.process-step {
  position: relative;
  z-index: 2;
  padding-top: 65px;
}

.process-step > span {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  display: grid;
  place-items: center;
  width: 49px;
  height: 49px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: var(--turquoise);
  background: var(--navy);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.process-step p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  line-height: 1.8;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 43px;
}

.gallery-filters button {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  background: var(--white);
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  color: var(--white);
  border-color: var(--aqua-deep);
  background: var(--aqua-deep);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 305px);
  gap: 16px;
  margin-top: 27px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px 28px 8px 8px;
  transition: opacity .3s ease, transform .3s ease;
}

html[dir="ltr"] .project-card {
  border-radius: 28px 8px 8px 8px;
}

.project-card.hidden {
  display: none;
}

.project-card.project-large {
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 29px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(3, 30, 40, .94), rgba(3, 30, 40, .02) 70%);
}

.project-overlay > span {
  margin-bottom: 7px;
  color: var(--turquoise);
  font-size: 9px;
  font-weight: 800;
}

.project-overlay h3 {
  margin: 0;
  font-size: 21px;
}

.project-large .project-overlay h3 {
  font-size: 30px;
}

.project-overlay p {
  max-width: 550px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 10px;
  line-height: 1.8;
}

.project-overlay a {
  align-self: flex-start;
  margin-top: 13px;
  border-bottom: 1px solid var(--turquoise);
  color: var(--turquoise);
  font-size: 9px;
  font-weight: 800;
}

.oman-section {
  position: relative;
  min-height: 670px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.oman-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 34, 45, .94) 0%, rgba(4, 34, 45, .62) 52%, rgba(4, 34, 45, .12)),
    url("assets/hero-waterpark.webp") center/cover no-repeat;
}

html[dir="rtl"] .oman-backdrop {
  transform: scaleX(-1);
}

.oman-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 43, 58, .48), transparent);
}

.oman-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .65fr;
  align-items: center;
  gap: 100px;
  min-height: 670px;
}

.oman-copy {
  max-width: 680px;
}

.oman-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.7vw, 65px);
  line-height: 1.3;
}

.oman-copy > p {
  max-width: 630px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .73);
  font-size: 15px;
  line-height: 2;
}

.oman-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 29px;
}

.oman-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 99px;
  background: rgba(255, 255, 255, .07);
  font-size: 9px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.oman-stat-card {
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 5px 32px 5px 5px;
  background: rgba(4, 34, 45, .68);
  box-shadow: 0 25px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(17px);
}

html[dir="ltr"] .oman-stat-card {
  border-radius: 32px 5px 5px 5px;
}

.oman-stat-card > p {
  margin: 0 0 8px;
  color: var(--turquoise);
  font-size: 9px;
  font-weight: 800;
}

.oman-stat-card h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.5;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 27px 0;
  border-block: 1px solid rgba(255, 255, 255, .15);
}

.stat-row div {
  padding: 21px 0;
}

.stat-row div + div {
  padding-inline-start: 21px;
  border-inline-start: 1px solid rgba(255, 255, 255, .15);
}

.stat-row strong {
  display: block;
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 35px;
}

.stat-row strong::after {
  content: "+";
}

.stat-row span {
  display: block;
  max-width: 120px;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
  line-height: 1.7;
}

.oman-stat-card .btn {
  width: 100%;
}

.industries {
  background: var(--surface);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 55px;
}

.industry-card {
  position: relative;
  min-height: 245px;
  padding: 31px;
  border: 1px solid rgba(5, 43, 58, .08);
  border-radius: 18px;
  background: var(--white);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 199, 181, .42);
  box-shadow: 0 16px 40px rgba(5, 43, 58, .08);
}

.industry-card > svg {
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  color: var(--aqua-deep);
}

.industry-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.85;
}

.industry-cta {
  color: var(--white);
  border-color: var(--navy);
  background:
    radial-gradient(circle at 80% 5%, rgba(32, 199, 181, .24), transparent 38%),
    var(--navy);
}

.industry-cta > span,
.industry-cta p {
  color: rgba(255, 255, 255, .55);
}

.industry-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--turquoise);
  font-size: 10px;
  font-weight: 800;
}

.why-us {
  color: var(--white);
  background: var(--navy);
}

.why-layout {
  align-items: start;
}

.why-copy {
  position: sticky;
  top: 130px;
}

.why-copy > p {
  color: rgba(255, 255, 255, .6);
}

.why-copy .btn {
  margin-top: 30px;
}

.why-list {
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.why-list article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.why-list article > span {
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
}

.why-list h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.why-list p {
  margin: 0;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  line-height: 1.8;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  align-items: start;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  border: 0;
  text-align: start;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.faq-item button span {
  padding-inline-end: 20px;
}

.faq-item button i {
  position: relative;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-item button i::before,
.faq-item button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--aqua-deep);
  transform: translate(-50%, -50%);
  transition: transform .25s ease;
}

.faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active button i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
  padding-bottom: 23px;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 10%, rgba(0, 166, 214, .25), transparent 26%),
    linear-gradient(135deg, #052b3a, #031c25);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: auto -110px -270px auto;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(32, 199, 181, .05);
  border-radius: 50%;
}

.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 85px;
}

.contact-copy > p {
  color: rgba(255, 255, 255, .6);
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 32px;
}

.contact-direct a {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 13px;
  color: var(--turquoise);
  background: rgba(255, 255, 255, .06);
}

.contact-icon svg {
  width: 20px;
}

.contact-direct a > span:last-child {
  display: flex;
  flex-direction: column;
}

.contact-direct small {
  color: rgba(255, 255, 255, .48);
  font-size: 9px;
}

.contact-direct strong {
  font-family: var(--font-en);
  font-size: 14px;
}

.contact-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.contact-social > strong {
  font-size: 11px;
}

.contact-social .social-links a {
  border-color: rgba(255, 255, 255, .2);
}

.contact-location {
  display: flex;
  flex-direction: column;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-location span {
  color: var(--turquoise);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: .1em;
}

.contact-location strong {
  margin-top: 5px;
  font-size: 12px;
}

.inquiry-form {
  padding: 38px;
  border-radius: 7px 32px 7px 7px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 35px 80px rgba(0, 0, 0, .21);
}

html[dir="ltr"] .inquiry-form {
  border-radius: 32px 7px 7px 7px;
}

.form-heading > span {
  color: var(--aqua-deep);
  font-size: 9px;
  font-weight: 800;
}

.form-heading h3 {
  margin: 4px 0 27px;
  font-size: 26px;
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-grid label > span {
  font-size: 10px;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(5, 43, 58, .12);
  border-radius: 8px;
  outline: 0;
  color: var(--ink);
  background: #f8faf9;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-grid input,
.form-grid select {
  height: 48px;
  padding: 0 13px;
}

.form-grid textarea {
  padding: 12px 13px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 3px rgba(32, 199, 181, .11);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #9aabb0;
  font-size: 10px;
}

.full-field {
  grid-column: 1 / -1;
}

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

.form-note {
  margin: 11px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 8px;
}

.site-footer {
  color: rgba(255, 255, 255, .7);
  background: #021820;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 65px;
  padding: 76px 0 57px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 78px;
  height: 78px;
}

.footer-brand p {
  max-width: 350px;
  margin: 21px 0 0;
  font-size: 10px;
  line-height: 1.9;
}

.footer-social {
  margin-top: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 12px;
}

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, .52);
  font-size: 10px;
  line-height: 1.7;
  transition: color .2s ease;
}

.footer-column a:hover {
  color: var(--turquoise);
}

.contact-column a {
  font-family: var(--font-en);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
  margin: 0;
  font-size: 9px;
}

.back-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: 9px;
}

.back-top svg {
  width: 14px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  inset: auto auto 24px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

html[dir="ltr"] .floating-whatsapp {
  inset: auto 24px 24px auto;
}

.floating-whatsapp > span {
  padding: 9px 13px;
  border: 1px solid rgba(5, 43, 58, .08);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(5, 43, 58, .12);
  font-size: 9px;
  font-weight: 700;
}

.floating-whatsapp i {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .3);
  animation: whatsappPulse 2.5s ease infinite;
}

.floating-whatsapp svg {
  width: 26px;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, .3), 0 0 0 0 rgba(37, 211, 102, .24); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, .3), 0 0 0 12px rgba(37, 211, 102, 0); }
}

.mobile-actions {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, .61, .36, 1);
}

.reveal-delay {
  transition-delay: .12s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .header-social {
    display: none;
  }

  .desktop-nav {
    gap: 13px;
  }

  .desktop-nav a {
    font-size: 11px;
  }

  .header-whatsapp span {
    display: none;
  }

  .header-whatsapp {
    padding: 10px;
  }

  .split-layout,
  .contact-grid {
    gap: 55px;
  }

  .hero-grid {
    grid-template-columns: 1fr 270px;
    gap: 36px;
  }

  .hero h1 {
    font-size: clamp(44px, 5vw, 63px);
  }

  .trust-list > div {
    padding: 0 11px;
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 50px;
  }

  .process-line {
    display: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 90px 0;
  }

  .site-header.header-hidden {
    transform: none;
  }

  .desktop-nav,
  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    inset: 84px 0 0;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    overflow-y: auto;
    padding: 46px 24px 90px;
    color: var(--white);
    background: rgba(3, 29, 39, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-menu a {
    display: grid;
    min-width: min(280px, 100%);
    min-height: 46px;
    place-items: center;
    font-size: 17px;
    font-weight: 700;
  }

  .mobile-menu .mobile-menu-social {
    display: flex;
    min-height: auto;
    margin-top: 10px;
  }

  .mobile-menu-social a {
    min-width: 48px;
    min-height: 48px;
  }

  .hero {
    min-height: 780px;
    max-height: 900px;
  }

  .hero-grid {
    display: block;
    padding-top: 165px;
  }

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

  .hero-card {
    display: none;
  }

  .hero-shade,
  html[dir="rtl"] .hero-shade,
  html[dir="ltr"] .hero-shade {
    background: linear-gradient(90deg, rgba(3, 25, 34, .91), rgba(3, 25, 34, .45)), linear-gradient(0deg, rgba(3, 25, 34, .55), transparent);
  }

  .trust-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 0;
  }

  .trust-list > div:nth-child(3) {
    border-inline-end: 0;
  }

  .split-layout,
  .contact-grid,
  .faq-layout,
  .oman-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 530px;
  }

  html[dir="rtl"] .visual-stamp {
    left: 0;
  }

  html[dir="ltr"] .visual-stamp {
    right: 0;
    left: auto;
  }

  .section-copy {
    max-width: 720px;
  }

  .benefit-grid,
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .heading-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .heading-row > p {
    max-width: 690px;
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 470px 300px;
  }

  .project-large {
    grid-column: 1 / -1;
    grid-row: auto !important;
  }

  .oman-grid {
    align-content: center;
    gap: 45px;
    padding-block: 90px;
  }

  .oman-stat-card {
    max-width: 490px;
  }

  .why-copy {
    position: static;
  }

  .faq-layout {
    gap: 45px;
  }

  .contact-grid {
    gap: 45px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 45px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .section {
    padding: 66px 0;
  }

  .header-inner {
    min-height: 72px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 13px;
    white-space: nowrap;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .header-actions {
    gap: 2px;
  }

  .lang-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-menu {
    inset-block-start: 72px;
    padding-top: 28px;
  }

  .hero {
    min-height: max(690px, 100svh);
    height: auto;
    max-height: none;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-grid {
    min-height: max(690px, 100svh);
    padding-top: 112px;
    padding-bottom: 88px;
  }

  .hero h1,
  html[lang="en"] .hero h1 {
    font-size: clamp(32px, 9.7vw, 43px);
    line-height: 1.28;
  }

  .hero-copy > p {
    margin-top: 17px;
    font-size: 13px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 360px;
    margin-top: 22px;
  }

  .btn {
    min-height: 52px;
    padding-inline: 18px;
  }

  .official-badge {
    align-items: flex-start;
    margin-top: 18px;
    font-size: 9px;
  }

  .hero-scroll {
    display: none;
  }

  .trust-list {
    grid-template-columns: 1fr 1fr;
  }

  .trust-list > div {
    padding: 3px 10px;
  }

  .trust-list > div:nth-child(2n) {
    border-inline-end: 0;
  }

  .trust-list > div:nth-child(3) {
    border-inline-end: 1px solid var(--line);
  }

  .trust-list > div:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .section-copy h2,
  .section-heading h2,
  .why-copy h2,
  .contact-copy h2,
  .oman-copy h2 {
    font-size: clamp(29px, 8.6vw, 35px);
  }

  html[lang="en"] .section-copy h2,
  html[lang="en"] .section-heading h2,
  html[lang="en"] .why-copy h2,
  html[lang="en"] .contact-copy h2 {
    font-size: clamp(28px, 8vw, 33px);
  }

  .about-visual {
    min-height: 430px;
  }

  .image-frame {
    inset-block-end: 28px;
    inset-inline-end: 6%;
  }

  .experience-card {
    width: 166px;
    min-height: 121px;
    padding: 20px;
  }

  .experience-number {
    font-size: 32px;
  }

  .visual-stamp {
    inset-block-start: 22px;
    right: auto;
    left: 0;
    width: 90px;
    height: 90px;
  }

  html[dir="ltr"] .visual-stamp {
    right: 0;
    left: auto;
  }

  .visual-stamp svg {
    width: 82px;
    height: 82px;
  }

  .benefit-grid,
  .industry-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 230px;
    padding: 26px;
  }

  .service-card,
  .service-card.service-featured {
    grid-row: auto;
    min-height: 390px;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 38px 20px;
  }

  .process-step {
    padding-top: 58px;
  }

  .project-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 350px);
  }

  .project-large {
    grid-column: auto;
  }

  .project-large .project-overlay h3 {
    font-size: 23px;
  }

  .gallery-filters {
    gap: 6px;
  }

  .gallery-filters button {
    padding: 8px 12px;
  }

  .oman-section,
  .oman-grid {
    min-height: auto;
  }

  .oman-backdrop {
    background-position: 68% center;
  }

  .oman-grid {
    padding-block: 75px;
  }

  .oman-stat-card {
    padding: 28px;
  }

  .industry-card {
    min-height: 220px;
  }

  .faq-item button {
    font-size: 12px;
  }

  .contact-section {
    padding: 70px 0 92px;
  }

  .contact-grid {
    gap: 36px;
  }

  .contact-direct a {
    min-height: 48px;
  }

  .contact-social {
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
  }

  .inquiry-form {
    padding: 26px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    font-size: 16px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 25px;
    padding-block: 58px 42px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand .brand-logo {
    width: 70px;
    height: 70px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 13px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-actions {
    position: fixed;
    z-index: 95;
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 60px;
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 -10px 32px rgba(5, 43, 58, .15);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-actions a + a {
    background: #25d366;
  }

  .mobile-actions svg {
    width: 19px;
  }

  .site-footer {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 45px;
    height: 45px;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 44px;
  }

  .hero-grid {
    padding-top: 104px;
  }

  .hero h1,
  html[lang="en"] .hero h1 {
    font-size: clamp(31px, 9.3vw, 39px);
  }

  .eyebrow {
    margin-bottom: 13px;
    font-size: 10px;
  }

  .official-badge svg {
    flex-basis: 20px;
    width: 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
