:root {
  --navy: #071c31;
  --navy-2: #0c2947;
  --gold: #f4b400;
  --gold-soft: #fff2c2;
  --green: #159447;
  --ink: #0b1520;
  --muted: #667085;
  --line: rgba(7, 28, 49, .11);
  --surface: #ffffff;
  --page: #f7f5ef;
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 24px 70px rgba(7, 28, 49, .12);
  --font-head: "Alexandria", "Tahoma", sans-serif;
  --font-body: "IBM Plex Sans Arabic", "Tahoma", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--page); }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 10%, rgba(244, 180, 0, .13), transparent 28rem),
    radial-gradient(circle at 4% 92%, rgba(7, 28, 49, .08), transparent 28rem),
    var(--page);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  inset-inline-start: 1rem;
  top: -5rem;
  z-index: 999;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

.page-shell {
  width: min(100% - 28px, 960px);
  min-height: 100vh;
  margin-inline: auto;
  display: grid;
  place-items: center;
  padding: 28px 0;
}

.hero-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 49, .08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(7, 28, 49, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 28, 49, .022) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 68%);
}

.hero-decoration {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(.2px);
  pointer-events: none;
}
.decoration-one {
  width: 270px;
  height: 270px;
  top: -115px;
  inset-inline-end: -100px;
  border: 54px solid rgba(244, 180, 0, .14);
}
.decoration-two {
  width: 175px;
  height: 175px;
  bottom: 105px;
  inset-inline-start: -108px;
  background: rgba(7, 28, 49, .05);
}

.brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 34px 10px;
}
.brand-logo {
  display: inline-flex;
  width: 188px;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background: #f8f7f4;
  text-decoration: none;
}
.brand-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  border: 1px solid rgba(244, 180, 0, .3);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 242, 194, .62);
  color: var(--navy);
  font-weight: 700;
  font-size: .88rem;
}
.brand-badge .icon-stack { color: #d89c00; }

.hero-content {
  width: min(100% - 68px, 720px);
  margin-inline: auto;
  padding: 10px 0 32px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  margin: 4px 0 10px;
  color: #9a7000;
  font-family: var(--font-head);
  font-size: clamp(.79rem, 2vw, .94rem);
  font-weight: 700;
  letter-spacing: .01em;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 22px;
  height: 2px;
  margin: auto 10px;
  border-radius: 2px;
  background: var(--gold);
}

h1 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 8.2vw, 5.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.045em;
}
h1 span {
  display: inline-block;
  margin-top: .08em;
  color: var(--gold);
  text-shadow: 0 5px 0 rgba(7, 28, 49, .04);
}

.rotator {
  width: min(100%, 610px);
  min-height: 52px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(7, 28, 49, .1);
  border-radius: 999px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 10px 28px rgba(7, 28, 49, .06);
  color: var(--navy);
  font-family: var(--font-head);
  font-size: clamp(.88rem, 2.7vw, 1.04rem);
  font-weight: 700;
}
.rotator > span:last-child {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  transition: opacity .28s ease, transform .28s ease;
}
.rotator.is-changing > span:last-child {
  opacity: 0;
  transform: translateY(8px);
}
.rotator-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(244, 180, 0, .14);
}

.intro {
  max-width: 610px;
  margin: 18px auto 25px;
  color: var(--muted);
  font-size: clamp(1rem, 2.7vw, 1.12rem);
  line-height: 1.85;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  text-align: start;
}
.action {
  position: relative;
  min-height: 88px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 30px;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 15px 17px;
  background: var(--surface);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(7, 28, 49, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.action::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  inset-inline-end: -52px;
  bottom: -58px;
  border-radius: 50%;
  background: currentColor;
  opacity: .045;
}
.action:hover {
  transform: translateY(-3px);
  border-color: rgba(244, 180, 0, .52);
  box-shadow: 0 18px 38px rgba(7, 28, 49, .1);
}
.action:focus-visible {
  outline: 4px solid rgba(244, 180, 0, .28);
  outline-offset: 2px;
}
.action-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 17px;
  font-size: 1.38rem;
}
.action-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}
.action-copy small { color: var(--muted); font-size: .82rem; }
.action-copy strong {
  overflow: hidden;
  color: var(--navy);
  font-family: var(--font-head);
  font-size: .98rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.action-arrow { color: rgba(7, 28, 49, .42); font-size: .92rem; }
.action-call .action-icon { background: var(--gold-soft); color: #ba8500; }
.action-whatsapp { border-color: rgba(21, 148, 71, .16); }
.action-whatsapp .action-icon { background: rgba(21, 148, 71, .12); color: var(--green); }
.action-location {
  grid-column: 1 / -1;
  min-height: 79px;
}
.action-location .action-icon { background: rgba(7, 28, 49, .09); color: var(--navy); }

.trust-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.trust-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 17px;
  padding: 13px;
  background: #f8f9fa;
  text-align: start;
}
.trust-item > .icon-stack {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
}
.trust-item span:last-child { min-width: 0; display: grid; }
.trust-item strong {
  overflow: hidden;
  color: var(--navy);
  font-size: .86rem;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.trust-item small { color: var(--muted); font-size: .74rem; }

.page-footer {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
}
.page-footer p { margin: 0; }
.page-footer span { color: var(--gold); }

.icon-stack { display: inline-grid; place-items: center; }
.icon-stack i { display: none; }
.icon-fallback { display: inline-grid; place-items: center; font-family: Arial, sans-serif; }
html.fa-ready .icon-stack i { display: inline-flex; }
html.fa-ready .icon-stack .icon-fallback { display: none; }

.mobile-dock { display: none; }

@media (max-width: 680px) {
  body { padding-bottom: calc(86px + env(safe-area-inset-bottom)); }
  .page-shell {
    width: min(100% - 18px, 520px);
    min-height: auto;
    padding: 9px 0 18px;
  }
  .hero-card { border-radius: 27px; }
  .brand-header { padding: 18px 20px 4px; }
  .brand-logo { width: 142px; min-height: 94px; border-radius: 17px; }
  .brand-badge { padding: 8px 11px; font-size: .73rem; }
  .hero-content { width: calc(100% - 34px); padding: 6px 0 22px; }
  h1 { font-size: clamp(2.1rem, 9vw, 2.8rem); line-height: 1.2; letter-spacing: -.055em; }
  .rotator { min-height: 47px; margin-top: 18px; padding-inline: 13px; }
  .intro { margin: 15px auto 19px; font-size: .98rem; line-height: 1.78; }
  .actions { grid-template-columns: 1fr; gap: 10px; }
  .action, .action-location { grid-column: auto; min-height: 78px; }
  .action { grid-template-columns: 48px minmax(0, 1fr) 26px; padding: 12px 14px; }
  .action-icon { width: 48px; height: 48px; border-radius: 15px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: 62px; }
  .page-footer { flex-wrap: wrap; min-height: 72px; gap: 5px 9px; padding-bottom: 16px; }

  .mobile-dock {
    position: fixed;
    z-index: 50;
    inset-inline: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: 1fr 1.25fr 1fr;
    gap: 6px;
    min-height: 69px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    padding: 7px;
    background: rgba(7, 28, 49, .96);
    box-shadow: 0 16px 42px rgba(7, 28, 49, .28);
    backdrop-filter: blur(14px);
  }
  .mobile-dock a {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 3px;
    border-radius: 17px;
    color: #fff;
    text-decoration: none;
    font-size: .72rem;
    font-weight: 700;
  }
  .mobile-dock .icon-stack { min-height: 23px; font-size: 1.15rem; color: var(--gold); }
  .mobile-dock a.mobile-primary { background: var(--green); }
  .mobile-dock a.mobile-primary .icon-stack { color: #fff; }
}

@media (max-width: 390px) {
  .brand-badge { max-width: 112px; white-space: normal; line-height: 1.35; }
  .rotator-dot { display: none; }
  .action-copy strong { font-size: .9rem; }
}

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

/* Arabic typography safeguard requested for browser and ad-landing consistency. */
.eyebrow { line-height: normal !important; }
* { line-height: normal !important; }
