:root {
  --navy: #063766;
  --blue: #0a68a8;
  --cyan: #12b7c4;
  --teal: #0a9ca8;
  --soft: #f6fbff;
  --line: #dceaf2;
  --text: #17324d;
  --muted: #66788a;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(6, 55, 102, 0.07);
  --shadow-strong: 0 20px 50px rgba(6, 55, 102, 0.12);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.75;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: "Cairo", sans-serif;
}

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

/* Language Direction */
html[dir="ltr"] body {
  direction: ltr;
  text-align: left;
}

html[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid transparent;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(6, 55, 102, 0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(6, 55, 102, 0.22);
}

.btn-outline {
  border-color: rgba(18, 183, 196, 0.6);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.88);
}

.btn-outline:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #dceaf2;
  box-shadow: 0 4px 14px rgba(6, 55, 102, 0.035);
}

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

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  font-weight: 900;
  font-size: 15px;
  color: #23364c;
}

.nav-links a {
  position: relative;
  padding: 24px 0;
  transition: 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 0;
  height: 2.5px;
  background: var(--cyan);
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--teal);
}

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

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

/* Language Switch */
.language-switch,
.mobile-language-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(18, 183, 196, 0.22);
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(18, 183, 196, 0.65), rgba(6, 55, 102, 0.45)) border-box;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(6, 55, 102, 0.055);
  transition: 0.25s ease;
  overflow: hidden;
}

.language-switch::before,
.mobile-language-switch::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1.7px solid currentColor;
  border-radius: 50%;
  opacity: 0.75;
  flex: 0 0 14px;
}

.language-switch::after,
.mobile-language-switch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 183, 196, 0.08), rgba(6, 55, 102, 0.04));
  opacity: 0;
  transition: 0.25s ease;
}

.language-switch:hover,
.mobile-language-switch:hover {
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(6, 55, 102, 0.10);
}

.language-switch:hover::after,
.mobile-language-switch:hover::after {
  opacity: 1;
}

.mobile-language-switch {
  margin-top: 10px;
  width: fit-content;
}

/* Menu */
.menu-toggle {
  display: none;
  border: 0;
  background: var(--soft);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 22px;
  cursor: pointer;
  color: var(--navy);
}

.mobile-menu {
  display: none;
  padding: 10px 22px 22px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.mobile-menu.show {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 800;
  color: var(--text);
}

html[dir="ltr"] .nav-links a::after {
  right: auto;
  left: 0;
}

/* Shared section styles */
.section {
  padding: 62px 0;
}

.section-label {
  display: inline-block;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 10px;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  color: var(--navy);
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-heading p {
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto;
  font-size: 16px;
}

/* Hero - compact version */
.hero {
  position: relative;
  overflow: visible;
  min-height: 380px;
  padding: 18px 0 58px;
  background:
    radial-gradient(circle at 8% 28%, rgba(18, 183, 196, 0.14), transparent 24%),
    linear-gradient(180deg, #f8fcff 0%, #ffffff 86%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 136, 202, 0.07), transparent 28%),
    radial-gradient(circle at 30% 20%, rgba(6, 55, 102, 0.03), transparent 30%);
  pointer-events: none;
}

.hero-showcase-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  min-height: 300px;
}

.hero-visual-col {
  grid-column: 1;
  position: relative;
}

.hero-copy-col {
  grid-column: 2;
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 730px;
}

.hero-company {
  color: var(--navy);
  font-size: clamp(34px, 3.25vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  white-space: nowrap;
}

.hero-tagline {
  color: var(--teal);
  font-size: clamp(28px, 2.85vw, 43px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.6px;
  margin-bottom: 18px;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-slider-box {
  position: relative;
  min-height: 300px;
  max-height: 300px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.96), rgba(226, 243, 252, 0.92) 45%, rgba(210, 232, 248, 0.72) 100%);
  border: 1px solid rgba(18, 183, 196, 0.18);
  box-shadow:
    0 20px 48px rgba(6, 55, 102, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.hero-slider-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 50%, rgba(18, 183, 196, 0.10), transparent 26%),
    linear-gradient(120deg, rgba(255,255,255,0.14), transparent 38%);
  pointer-events: none;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03) translateY(8px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 20px 30px rgba(6, 55, 102, 0.15));
}

.hero-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(6, 55, 102, 0.22);
  cursor: pointer;
  transition: 0.25s ease;
}

.hero-dot.active {
  width: 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--navy));
}

.hero-floating-card {
  position: absolute;
  left: 50%;
  bottom: -120px;
  transform: translateX(-50%);
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(18, 183, 196, 0.18);
  border-radius: 24px;
  box-shadow:
    0 18px 44px rgba(6, 55, 102, 0.09),
    inset 0 1px 0 rgba(255,255,255,0.85);
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 16px;
  align-items: center;
  z-index: 5;
  scroll-margin-top: 110px;
}

.hero-floating-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f3fbff, #e8f7fd);
  border: 1px solid rgba(18, 183, 196, 0.16);
  color: var(--teal);
  font-size: 23px;
  box-shadow: 0 10px 24px rgba(6, 55, 102, 0.06);
}

.hero-floating-label {
  display: inline-block;
  color: var(--teal);
  font-size: 13.5px;
  font-weight: 900;
  margin-bottom: 4px;
}

.hero-floating-content p {
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0;
}

html[dir="ltr"] .hero-copy-col {
  text-align: left;
}

html[dir="ltr"] .hero-floating-card {
  grid-template-columns: 1fr 66px;
}

html[dir="ltr"] .hero-floating-icon {
  order: 2;
}

html[dir="ltr"] .hero-floating-content {
  order: 1;
  text-align: left;
}

/* Services */
.services-section {
  background: #ffffff;
  padding-top: 82px;
}

.featured-services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.featured-service-card {
  background: #ffffff;
  border: 1px solid #dceaf2;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
  cursor: pointer;
}

.featured-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(18, 183, 196, 0.45);
}

.featured-service-card:focus-visible {
  outline: 4px solid rgba(18, 183, 196, 0.28);
  outline-offset: 4px;
}

.featured-image {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #f6fbff;
}

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

.featured-body {
  padding: 24px 15px 22px;
  text-align: right;
}

.featured-body h3 {
  color: var(--navy);
  font-size: 16.5px;
  font-weight: 900;
  margin-bottom: 8px;
  line-height: 1.45;
}

.featured-body p {
  color: var(--muted);
  font-size: 12.8px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  pointer-events: none;
}

.service-link::after {
  content: "←";
  transition: 0.25s ease;
}

.featured-service-card:hover .service-link::after {
  transform: translateX(-4px);
}

html[dir="ltr"] .featured-body {
  text-align: left;
}

html[dir="ltr"] .service-link::after {
  content: "→";
}

html[dir="ltr"] .featured-service-card:hover .service-link::after {
  transform: translateX(4px);
}

/* Process */
.process-section {
  background: #ffffff;
}

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

.process-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 20px 24px;
  box-shadow: var(--shadow);
  transition: 0.25s ease;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(18, 183, 196, 0.45);
}

.process-card span {
  position: absolute;
  top: -22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 10px 22px rgba(6, 55, 102, 0.16);
}

.process-card h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
  margin-top: 12px;
}

.process-card p {
  color: var(--muted);
  font-size: 13.8px;
  line-height: 1.8;
}

html[dir="ltr"] .process-card span {
  right: auto;
  left: 24px;
}

/* Premium CTA */
.cta-section {
  padding: 16px 0 70px;
  background: #ffffff;
}

.premium-cta {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 42px 48px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 55%, rgba(18, 183, 196, 0.22), transparent 28%),
    linear-gradient(135deg, #0b9fac 0%, #063766 55%, #042744 100%);
  box-shadow: 0 22px 60px rgba(6, 55, 102, 0.16);
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 36px;
  align-items: center;
}

.premium-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to left, rgba(255,255,255,0.045), transparent 36%),
    radial-gradient(circle at 88% 20%, rgba(255,255,255,0.08), transparent 18%);
  pointer-events: none;
  z-index: 0;
}

.premium-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.cta-content,
.cta-actions-line,
.cta-watermark {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 700px;
  text-align: right;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 6px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.075);
  border: 1px solid rgba(18, 183, 196, 0.45);
  color: #69eff8;
  font-size: 13px;
  font-weight: 900;
}

.cta-label::before {
  content: "✦";
  font-size: 13px;
}

.premium-cta h2 {
  color: #ffffff;
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1.35;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.4px;
  max-width: 780px;
}

.premium-cta p {
  color: rgba(255,255,255,0.86);
  font-size: 15.5px;
  line-height: 1.9;
  max-width: 670px;
}

.cta-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.cta-mini-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.13);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.cta-actions-line {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.cta-main-action {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #18d2da, #0b83e8);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 16px 30px rgba(0, 98, 190, 0.25);
  transition: 0.25s ease;
  width: 100%;
}

.cta-main-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(0, 98, 190, 0.32);
}

.cta-main-action strong {
  font-size: 22px;
  line-height: 1;
}

.cta-mail-link {
  min-height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-weight: 900;
  font-size: 14.5px;
  transition: 0.25s ease;
  width: 100%;
}

.cta-mail-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.11);
  transform: translateY(-2px);
}

.mail-icon {
  height: 40px;
  text-align: center;
  vertical-align: middle;
  place-items: center;
  color: #5facb7;
  font-size: 36px;
  line-height: 1;
  display: inline-grid;
  width: 42px;
  flex: 0 0 42px;
}

.cta-watermark {
  position: absolute;
  left: 42px;
  bottom: -55px;
  width: 330px;
  height: 250px;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  opacity: 0.035;
  filter: grayscale(100%) brightness(230%);
  pointer-events: none;
}

html[dir="ltr"] .cta-content {
  text-align: left;
}

html[dir="ltr"] .cta-watermark {
  left: auto;
  right: 42px;
  background-position: right bottom;
}

/* Footer */
.site-footer {
  position: relative;
  background:
    radial-gradient(circle at 84% 14%, rgba(18, 183, 196, 0.16), transparent 30%),
    linear-gradient(135deg, #052b50 0%, #063766 50%, #042342 100%);
  color: #ffffff;
  padding-top: 52px;
  margin-top: 20px;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(18, 183, 196, 0.10), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.06), transparent 24%);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1.05fr;
  gap: 34px;
  padding-bottom: 28px;
  align-items: start;
}

.footer-brand {
  position: relative;
  isolation: isolate;
}

.footer-logo {
  position: relative;
  z-index: 2;
  width: 230px;
  max-height: 115px;
  object-fit: contain;
  padding: 0;
  margin-bottom: 22px;
  background: transparent;
  border: 0;
  border-radius: 0;
  filter:
    brightness(0)
    invert(1)
    sepia(1)
    saturate(2.2)
    hue-rotate(145deg)
    drop-shadow(0 16px 28px rgba(0, 0, 0, 0.28))
    drop-shadow(0 0 18px rgba(18, 183, 196, 0.34));
  opacity: 0.96;
  transition: 0.28s ease;
}

.footer-brand::before {
  content: "";
  position: absolute;
  top: -35px;
  right: -46px;
  width: 275px;
  height: 170px;
  background: radial-gradient(circle, rgba(18, 183, 196, 0.20), transparent 64%);
  filter: blur(6px);
  opacity: 0.75;
  pointer-events: none;
  z-index: -1;
}

.footer-logo:hover {
  transform: translateY(-4px) scale(1.025);
  opacity: 1;
  filter:
    brightness(0)
    invert(1)
    sepia(1)
    saturate(2.7)
    hue-rotate(145deg)
    drop-shadow(0 20px 34px rgba(0, 0, 0, 0.33))
    drop-shadow(0 0 26px rgba(18, 183, 196, 0.48));
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.9;
  max-width: 360px;
}

.footer-col h3,
.footer-brand h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 9px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--cyan);
}

.footer-col li {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.76);
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: #ffffff;
  padding-right: 4px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 9px;
}

.footer-icon {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 12px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  transition: 0.25s ease;
}

.footer-socials a:hover {
  background: var(--cyan);
  transform: translateY(-3px);
}

.footer-socials svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.footer-cta-row {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-cta-row strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 2px;
}

.footer-cta-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--navy);
  font-weight: 900;
  transition: 0.25s ease;
  white-space: nowrap;
}

.footer-cta-btn:hover {
  transform: translateY(-2px);
  background: #f4fbff;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 14px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13.5px;
}

html[dir="ltr"] .footer-col h3::after {
  right: auto;
  left: 0;
}

html[dir="ltr"] .footer-col a:hover {
  padding-right: 0;
  padding-left: 4px;
}

html[dir="ltr"] .footer-brand::before {
  right: auto;
  left: -46px;
}

/* Service Details Modal */
.service-details-modal {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.service-details-modal.show {
  display: flex;
}

.service-details-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 35, 66, 0.62);
  backdrop-filter: blur(8px);
}

.service-details-box {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 28px 70px rgba(6, 55, 102, 0.24);
  animation: modalIn 0.25s ease;
}

.service-details-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f2f8fc;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.service-details-close:hover {
  background: #e6f3fa;
  transform: rotate(90deg);
}

.service-details-image-wrap {
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dceaf2;
  background: #f7fcff;
}

.service-details-image-wrap.is-hidden {
  display: none;
}

.service-details-image-wrap img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-details-header {
  margin-bottom: 18px;
  padding-left: 46px;
}

.service-details-header span {
  display: inline-block;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}

.service-details-header h2 {
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 10px;
}

.service-details-header p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.9;
}

.service-details-content h3 {
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 12px;
}

.service-details-content ul {
  display: grid;
  gap: 10px;
}

.service-details-content li {
  position: relative;
  padding-right: 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}

.service-details-content li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.service-details-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.service-details-request-btn,
.service-details-whatsapp-btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  transition: 0.25s ease;
}

.service-details-request-btn {
  border: 0;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(6, 55, 102, 0.16);
}

.service-details-request-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(6, 55, 102, 0.22);
}

.service-details-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(18, 183, 196, 0.6);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.78);
}

.service-details-whatsapp-btn:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

html[dir="ltr"] .service-details-close {
  left: auto;
  right: 18px;
}

html[dir="ltr"] .service-details-header {
  padding-left: 0;
  padding-right: 46px;
}

html[dir="ltr"] .service-details-content li {
  padding-right: 0;
  padding-left: 20px;
}

html[dir="ltr"] .service-details-content li::before {
  right: auto;
  left: 0;
}

/* Contact Modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-modal.show {
  display: flex;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 35, 66, 0.62);
  backdrop-filter: blur(8px);
}

.contact-modal-box {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: #ffffff;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 28px 70px rgba(6, 55, 102, 0.24);
  animation: modalIn 0.25s ease;
}

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

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

.contact-modal-close {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f2f8fc;
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-modal-close:hover {
  background: #e6f3fa;
  transform: rotate(90deg);
}

.contact-modal-header {
  padding-left: 46px;
  margin-bottom: 22px;
}

.contact-modal-header span {
  display: inline-block;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}

.contact-modal-header h2 {
  color: var(--navy);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 8px;
}

.contact-modal-header p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
}

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

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid #dceaf2;
  border-radius: 14px;
  padding: 12px 14px;
  font-family: "Cairo", sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(18, 183, 196, 0.65);
  box-shadow: 0 0 0 4px rgba(18, 183, 196, 0.09);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-submit-btn {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: #ffffff;
  font-family: "Cairo", sans-serif;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 12px 26px rgba(6, 55, 102, 0.16);
  margin-top: 4px;
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(6, 55, 102, 0.22);
}

.privacy-note {
  text-align: center;
  color: var(--muted);
  font-size: 12.8px;
  line-height: 1.6;
  margin-top: -4px;
}

.contact-whatsapp-link {
  text-align: center;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  margin-top: 2px;
}

html[dir="ltr"] .contact-modal-close {
  left: auto;
  right: 18px;
}

html[dir="ltr"] .contact-modal-header {
  padding-left: 0;
  padding-right: 46px;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 200;
  background: #25d366;
  color: #ffffff;
  font-weight: 900;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

/* Large Tablet */
@media (max-width: 1260px) {
  .container {
    width: min(1200px, calc(100% - 32px));
  }

  .hero-showcase-wrap {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 28px;
    min-height: 286px;
  }

  .hero-slider-box {
    min-height: 286px;
    max-height: 286px;
  }

  .hero-company {
    font-size: clamp(32px, 3vw, 44px);
  }

  .hero-tagline {
    font-size: clamp(27px, 2.55vw, 38px);
  }

  .featured-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .featured-image {
    height: 170px;
  }

  .featured-body {
    padding: 28px 20px 24px;
  }

  .featured-body h3 {
    font-size: 18px;
  }

  .featured-body p {
    font-size: 13.8px;
  }

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

/* Tablet */
@media (max-width: 1100px) {
  .nav-links,
  .header-btn,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 24px 0 56px;
  }

  .hero-showcase-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
  }

  .hero-copy-col {
    grid-column: auto;
    order: 1;
    text-align: center;
    max-width: 100%;
  }

  .hero-visual-col {
    grid-column: auto;
    order: 2;
  }

  .hero-company {
    font-size: clamp(32px, 7vw, 52px);
    white-space: normal;
  }

  .hero-tagline {
    font-size: clamp(25px, 6vw, 42px);
    margin-bottom: 18px;
    white-space: normal;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-slider-box {
    min-height: 340px;
    max-height: 340px;
    border-radius: 28px;
  }

  .hero-floating-card {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 4px;
  }

  .services-section {
    padding-top: 64px;
  }

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

  .footer-cta-row {
    align-items: flex-start;
  }

  .premium-cta {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 34px 26px;
    text-align: center;
  }

  .cta-content {
    max-width: 100%;
    text-align: center;
  }

  html[dir="ltr"] .cta-content {
    text-align: center;
  }

  .premium-cta h2,
  .premium-cta p {
    max-width: 100%;
    margin-inline: auto;
  }

  .cta-mini-points {
    justify-content: center;
  }

  .cta-actions-line {
    width: min(100%, 440px);
    margin-inline: auto;
  }

  .cta-watermark,
  html[dir="ltr"] .cta-watermark {
    width: 260px;
    height: 210px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: -70px;
    opacity: 0.035;
    background-position: center bottom;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 1320px);
  }

  .nav {
    min-height: 72px;
  }

  .brand-logo {
    height: 48px;
  }

  .section {
    padding: 54px 0;
  }

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

  .section-heading h2 {
    font-size: 28px;
  }

  .hero {
    padding: 20px 0 52px;
  }

  .hero-company {
    font-size: 32px;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
  }

  .hero-tagline {
    font-size: 26px;
    line-height: 1.18;
    margin-bottom: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 46px;
    padding: 0 20px;
    font-size: 14px;
  }

  .hero-slider-box {
    min-height: 250px;
    max-height: 250px;
    border-radius: 22px;
  }

  .hero-slide {
    padding: 18px;
  }

  .hero-slider-dots {
    bottom: 13px;
  }

  .hero-dot {
    width: 9px;
    height: 9px;
  }

  .hero-dot.active {
    width: 22px;
  }

  .hero-floating-card,
  html[dir="ltr"] .hero-floating-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 18px 16px;
    gap: 12px;
  }

  .hero-floating-icon,
  html[dir="ltr"] .hero-floating-icon {
    order: 1;
    margin-inline: auto;
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .hero-floating-content,
  html[dir="ltr"] .hero-floating-content {
    order: 2;
    text-align: center;
  }

  .hero-floating-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .featured-services-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .featured-image {
    height: 190px;
  }

  .featured-body,
  html[dir="ltr"] .featured-body {
    text-align: center;
  }

  .featured-body h3 {
    font-size: 20px;
  }

  .featured-body p {
    font-size: 14px;
  }

  .cta-section {
    padding: 0 0 55px;
  }

  .premium-cta {
    border-radius: 22px;
    padding: 28px 18px;
  }

  .premium-cta h2 {
    font-size: 26px;
    line-height: 1.4;
  }

  .premium-cta p {
    font-size: 14.5px;
    line-height: 1.85;
  }

  .cta-mini-points span {
    min-height: 34px;
    padding: 0 14px;
    font-size: 12.5px;
  }

  .cta-main-action {
    min-height: 50px;
    font-size: 15px;
  }

  .cta-mail-link {
    min-height: 50px;
  }

  .mail-icon {
    height: 40px;
    width: 40px;
    flex-basis: 40px;
    font-size: 34px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .footer-grid {
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer-logo {
    width: 220px;
    max-height: 110px;
    margin-inline: auto;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand::before {
    right: 50%;
    transform: translateX(50%);
    top: -34px;
  }

  html[dir="ltr"] .footer-brand::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-cta-row {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .service-details-modal,
  .contact-modal {
    padding: 14px;
  }

  .service-details-box,
  .contact-modal-box {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .service-details-header,
  .contact-modal-header {
    padding-left: 42px;
  }

  html[dir="ltr"] .service-details-header,
  html[dir="ltr"] .contact-modal-header {
    padding-left: 0;
    padding-right: 42px;
  }

  .service-details-header h2,
  .contact-modal-header h2 {
    font-size: 24px;
  }

  .service-details-image-wrap img {
    height: 200px;
  }

  .service-details-actions {
    flex-direction: column;
  }

  .service-details-request-btn,
  .service-details-whatsapp-btn {
    width: 100%;
  }

  .whatsapp-float {
    left: 14px;
    bottom: 14px;
    font-size: 13px;
    padding: 10px 15px;
  }
}