@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --navy: #081a2b;
  --blue: #073f68;
  --cyan: #28a9d6;
  --wine: #8b1025;
  --gold: #c9a461;
  --paper: #f5f8fb;
  --ink: #12202d;
  --muted: #63717f;
  --line: #dfe6ec;
  --white: #fff;
  --green: #19b86b;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Cairo", Arial, sans-serif;
}
body.en {
  font-family: "Manrope", Arial, sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input,
select {
  font: inherit;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}
.topbar {
  background: var(--navy);
  color: #d8e8f2;
  font-size: 12px;
}
.topbar .container {
  min-height: 39px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.topbar-side {
  display: flex;
  gap: 20px;
  align-items: center;
}
.topbar a:hover {
  color: #fff;
}
.language {
  color: #fff;
  font-weight: 800;
  border-inline-start: 1px solid #365063;
  padding-inline-start: 18px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid #e6edf2;
}
.nav {
  height: 86px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
}
.logo {
  width: 57px;
  height: 57px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(
    circle at 35% 25%,
    #d9475e 0,
    #8b1025 46%,
    #320813 100%
  );
  border: 3px solid #e1c281;
  box-shadow: 0 8px 24px rgba(139, 16, 37, 0.25);
  color: white;
  font-size: 30px;
  font-weight: 300;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}
.brand-copy b {
  font-size: 17px;
}
.brand-copy small {
  color: var(--cyan);
  font: 800 8.5px/1.3 Arial;
  letter-spacing: 0.4px;
}
.links {
  display: flex;
  gap: 23px;
  align-items: center;
  margin-inline-start: auto;
  font-size: 13px;
  font-weight: 700;
}
.links a {
  position: relative;
}
.links a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--wine);
  transition: 0.25s;
}
.links a:hover:after {
  width: 100%;
}
.header-cta,
.btn-primary {
  padding: 12px 20px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--wine), #ae1b34);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 11px 25px rgba(139, 16, 37, 0.2);
}
.menu {
  display: none;
  margin-inline-start: auto;
  border: 0;
  background: #eef3f7;
  border-radius: 9px;
  width: 43px;
  height: 43px;
  font-size: 22px;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 72px;
  background: linear-gradient(110deg, #eef8fc 0, #fff 48%, #f8f2e9 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(7, 63, 104, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(7, 63, 104, 0.035) 1px, transparent 1px);
  background-size: 45px 45px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 65px;
  align-items: center;
}
.pill,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
}
.pill:before,
.section-label:before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  font-size: 56px;
  line-height: 1.35;
  letter-spacing: -2px;
  margin: 17px 0;
}
.hero h1 span {
  color: var(--wine);
}
.hero-copy > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
  max-width: 610px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.actions a {
  padding: 14px 24px;
}
.btn-outline {
  border: 1px solid #cfd8df;
  border-radius: 9px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 11px;
  color: #546575;
}
.trust i {
  font-style: normal;
  color: var(--green);
  font-weight: 900;
}
.converter {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(26, 48, 64, 0.14);
}
.converter-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.converter h2 {
  font-size: 23px;
  margin: 3px 0;
}
.converter small {
  color: var(--muted);
}
.live {
  background: #eaf8f1;
  color: #168b52;
  border-radius: 30px;
  padding: 6px 9px;
  font-size: 10px;
}
.field-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin: 11px 3px 6px;
}
.currency-field {
  display: flex;
  height: 65px;
  border: 1px solid #dbe3e9;
  border-radius: 12px;
  overflow: hidden;
  direction: ltr;
  background: #fff;
}
.currency-field input,
.currency-field output {
  flex: 1;
  min-width: 0;
  border: 0;
  padding: 0 16px;
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
  color: var(--wine);
}
.currency-field select {
  border: 0;
  border-left: 1px solid #e1e7eb;
  background: #f7f9fb;
  padding: 0 10px;
  font-weight: 800;
}
.swap {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #d9e0e5;
  background: #fff;
  color: var(--wine);
  margin: -3px auto -9px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.note {
  font-size: 9.5px !important;
  text-align: center;
  color: #87929c !important;
  margin: 13px 0 0;
}
.rate-strip {
  border-block: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(17, 32, 45, 0.03);
}
.rate-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.mini-rate {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-inline-end: 1px solid var(--line);
}
.mini-rate:last-child {
  border: 0;
}
.mini-rate i {
  font-style: normal;
  font-size: 24px;
}
.mini-rate span {
  font-size: 11px;
  font-weight: 800;
}
.mini-rate small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
}
.mini-rate b {
  margin-inline-start: auto;
  color: var(--wine);
  font-size: 12px;
}
.section {
  padding: 92px 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 38px;
  gap: 25px;
}
.section h2 {
  font-size: 36px;
  line-height: 1.5;
  margin: 10px 0;
}
.section-head > p {
  max-width: 430px;
  color: var(--muted);
  line-height: 1.9;
  font-size: 13px;
}
.services {
  background: var(--paper);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.card {
  position: relative;
  background: #fff;
  border: 1px solid #e5ebf0;
  border-radius: 18px;
  padding: 27px;
  transition: 0.25s;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  border-color: #dbc79f;
  box-shadow: 0 18px 42px rgba(20, 40, 58, 0.08);
}
.card .icon {
  width: 51px;
  height: 51px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f8eaed;
  color: var(--wine);
  font-size: 25px;
}
.card .number {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #d8e0e6;
  font-weight: 800;
}
.rtl .card .number {
  left: 20px;
  right: auto;
}
.card h3 {
  font-size: 16px;
  margin: 18px 0 8px;
}
.card p {
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.9;
  min-height: 66px;
}
.card a {
  font-size: 11px;
  color: var(--wine);
  font-weight: 800;
}
.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}
.why-visual {
  min-height: 480px;
  border-radius: 28px;
  background: linear-gradient(145deg, #dff4fb, #e9f0f4 52%, #f6e8d7);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.why-visual:before,
.why-visual:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(139, 16, 37, 0.15);
  border-radius: 50%;
  width: 370px;
  height: 370px;
}
.why-visual:after {
  width: 250px;
  height: 250px;
}
.exchange-symbol {
  font-size: 150px;
  color: var(--wine);
  transform: rotate(-12deg);
  text-shadow: 0 25px 50px rgba(139, 16, 37, 0.2);
}
.badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: white;
  border-radius: 13px;
  padding: 15px 19px;
  box-shadow: 0 15px 35px rgba(18, 32, 45, 0.14);
  font-size: 11px;
}
.badge b {
  display: block;
  color: var(--wine);
  font-size: 20px;
}
.why-copy > p {
  color: var(--muted);
  line-height: 2;
  font-size: 14px;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 25px;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px;
}
.feature i {
  font-style: normal;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #eaf8f1;
  color: var(--green);
  display: grid;
  place-items: center;
}
.feature b {
  display: block;
  font-size: 12px;
}
.feature small {
  color: var(--muted);
  font-size: 9.5px;
}
.rates {
  background: var(--navy);
  color: #fff;
}
.rates .section-label {
  color: #e2c388;
}
.rates .section-head > p {
  color: #9fb0bd;
}
.table {
  border: 1px solid #2b4558;
  border-radius: 17px;
  overflow: hidden;
}
.row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 0.8fr;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #263f51;
  font-size: 12px;
}
.row:last-child {
  border: 0;
}
.row.head {
  background: #10283a;
  color: #95a9b7;
  font-size: 10px;
}
.currency-name {
  display: flex;
  align-items: center;
  gap: 11px;
}
.currency-name i {
  font-style: normal;
  font-size: 25px;
}
.currency-name b small {
  display: block;
  color: #8399a8;
  font-size: 9px;
}
.row strong {
  color: #edd19e;
}
.row a {
  border: 1px solid #675437;
  color: #f0d6a6;
  border-radius: 8px;
  padding: 7px 9px;
  text-align: center;
  font-size: 9px;
}
.steps {
  background: #fff;
}
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  text-align: center;
  padding: 28px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
}
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 12px;
  left: 14px;
  color: #d7e0e6;
  font-weight: 800;
}
.step i {
  font-style: normal;
  font-size: 31px;
}
.step h3 {
  font-size: 14px;
  margin: 13px 0 6px;
}
.step p {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.8;
}
.faq-contact {
  background: var(--paper);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
  padding: 15px 17px;
}
.faq summary {
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}
.faq details p {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.9;
}
.contact-card {
  background: #fff;
  border-radius: 21px;
  padding: 30px;
  border: 1px solid var(--line);
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child {
  border: 0;
}
.contact-item i {
  font-style: normal;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: #f8eaed;
  color: var(--wine);
  display: grid;
  place-items: center;
}
.contact-item span {
  display: flex;
  flex-direction: column;
}
.contact-item small {
  color: var(--muted);
  font-size: 9px;
}
.contact-item b {
  font-size: 12px;
}
.cta {
  padding: 42px 0;
  background: linear-gradient(130deg, var(--wine), #4d0914);
  color: #fff;
}
.cta .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.cta h2 {
  font-size: 25px;
  margin: 3px 0;
}
.cta p {
  font-size: 11px;
  color: #e7c4ca;
}
.cta a {
  background: #fff;
  color: var(--wine);
  border-radius: 9px;
  padding: 13px 23px;
  font-size: 12px;
  font-weight: 800;
}
.footer {
  background: #061522;
  color: #fff;
  padding: 55px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr;
  gap: 45px;
}
.footer .brand {
  min-width: 0;
}
.footer p,
.footer a {
  font-size: 11px;
  color: #a8bac7;
  line-height: 2;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer h3 {
  font-size: 13px;
  margin-top: 0;
}
.copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid #233746;
  margin-top: 35px;
  padding-top: 18px;
  color: #708897;
  font-size: 9.5px;
}
.footer .zada-credit {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 8px 11px 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.035)
  );
  color: #d9e5ec;
  line-height: 1.2;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.footer .zada-credit span {
  font-size: 8.5px;
  color: #9bb0bd;
}
.footer .zada-credit strong {
  font:
    900 10.5px/1 Arial,
    sans-serif;
  letter-spacing: 0.7px;
  color: #fff;
}
.footer .zada-credit i {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wine), #bd2340);
  color: #fff;
  font-style: normal;
  font-size: 12px;
  transition: transform 0.25s ease;
}
.footer .zada-credit:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 164, 97, 0.55);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.24);
}
.footer .zada-credit:hover i {
  transform: rotate(45deg);
}
.footer .zada-credit:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.floating {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.en .floating {
  left: auto;
  right: 20px;
}
.float-btn {
  width: 49px;
  height: 49px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  font-size: 20px;
}
.float-whatsapp {
  background: var(--green);
}
.float-phone {
  background: var(--wine);
}
.float-top {
  background: var(--blue);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s;
}
.float-top.show {
  opacity: 1;
  transform: none;
}
.float-lang {
  background: var(--gold);
  font-size: 11px;
  font-weight: 800;
}
.status-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 13px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  font-size: 10px;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.status-toast.show {
  opacity: 1;
}
@media (max-width: 980px) {
  .header-cta {
    display: none;
  }
  .menu {
    display: block;
  }
  .links {
    display: none;
    position: absolute;
    top: 86px;
    right: 20px;
    left: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 15px;
    padding: 17px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
    flex-direction: column;
    align-items: stretch;
  }
  .links.open {
    display: flex;
  }
  .hero-grid,
  .why-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy > p {
    margin-inline: auto;
  }
  .actions,
  .trust {
    justify-content: center;
  }
  .rate-grid {
    grid-template-columns: repeat(5, 200px);
    overflow-x: auto;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-visual {
    min-height: 380px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }
  .row {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .row > *:last-child {
    display: none;
  }
}
@media (max-width: 620px) {
  .container {
    width: calc(100% - 28px);
  }
  .topbar .topbar-side:first-child {
    display: none;
  }
  .topbar .container {
    justify-content: center;
  }
  .brand {
    min-width: 0;
  }
  .brand-copy b {
    font-size: 13px;
  }
  .brand-copy small {
    display: none;
  }
  .logo {
    width: 48px;
    height: 48px;
  }
  .hero {
    padding: 52px 0;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-copy > p {
    font-size: 13px;
  }
  .converter {
    padding: 20px;
  }
  .currency-field select {
    max-width: 112px;
  }
  .section {
    padding: 68px 0;
  }
  .section h2 {
    font-size: 27px;
  }
  .service-grid,
  .feature-list,
  .step-grid {
    grid-template-columns: 1fr;
  }
  .why-visual {
    min-height: 300px;
  }
  .exchange-symbol {
    font-size: 105px;
  }
  .row {
    grid-template-columns: 1.6fr 1fr;
    padding: 13px;
  }
  .row > *:nth-child(2) {
    display: none;
  }
  .faq-grid {
    gap: 28px;
  }
  .cta .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .footer .zada-credit {
    width: 100%;
    justify-content: center;
    margin-top: 7px;
    padding: 10px 12px;
  }
  .floating {
    left: 12px;
    bottom: 12px;
  }
  .en .floating {
    right: 12px;
  }
  .float-btn {
    width: 45px;
    height: 45px;
  }
}
