:root {
  --ink: #07182c;
  --navy: #0c2344;
  --blue: #1563d8;
  --blue-deep: #0d4cb3;
  --ice: #e7f0fb;
  --paper: #f5f8fc;
  --card: #ffffff;
  --line: #d5e1ee;
  --text: #122033;
  --muted: #5c6d82;
  --wa: #0f7a62;
  --wa-deep: #0c634f;
  --shadow: 0 18px 40px rgba(7, 24, 44, 0.08);
  --header: 5.75rem;
  --wrap: 1120px;
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Cairo", "Segoe UI", Tahoma, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
}

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

a { color: inherit; }

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

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  inset-inline-start: 1rem;
  top: -3rem;
  z-index: 80;
  background: #fff;
  color: var(--ink);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

.skip:focus { top: 0.75rem; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(213, 225, 238, 0.9);
  backdrop-filter: blur(14px);
}

.header-bar {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  height: 4.6rem;
  width: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
}

.nav a:hover { background: var(--ice); }

.lang-btn,
.menu-btn,
.btn {
  font: inherit;
  cursor: pointer;
}

.lang-btn {
  margin-inline-start: 0.35rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-weight: 700;
}

.lang-btn:hover { border-color: var(--blue); color: var(--blue-deep); }

.menu-btn {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  position: relative;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: absolute;
  inset-inline-start: 0.75rem;
}

.menu-icon { top: 1.3rem; }
.menu-icon::before,
.menu-icon::after { content: ""; inset-inline-start: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

[dir="ltr"] .hero-photo { transform: scaleX(-1); }

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to left, rgba(7, 24, 44, 0.92) 0%, rgba(7, 24, 44, 0.62) 36%, rgba(7, 24, 44, 0.08) 68%);
  pointer-events: none;
}

[dir="ltr"] .hero::after {
  background: linear-gradient(to right, rgba(7, 24, 44, 0.92) 0%, rgba(7, 24, 44, 0.62) 36%, rgba(7, 24, 44, 0.08) 68%);
}

.hero-layout {
  position: relative;
  z-index: 1;
  padding-block: 4.5rem;
}

.hero-copy {
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kicker,
.eyebrow {
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.kicker {
  color: #9ec4ff;
  font-size: 0.95rem;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 0.7rem;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 800;
}

.lead {
  max-width: 36rem;
  margin-bottom: 0;
  color: #d7e4f4;
  font-size: 1.12rem;
}

.hero .actions { margin-top: 1.6rem; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-meta {
  font-weight: 600;
  opacity: 0.72;
}

.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--ice); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--navy); }

.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-deep); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost:hover { border-color: var(--blue); color: var(--blue-deep); }

.section,
#contact {
  scroll-margin-top: calc(var(--header) + 0.75rem);
}

.section {
  padding-block: 4.5rem;
}

.section-head { max-width: 36rem; margin-bottom: 2rem; }

.eyebrow {
  color: var(--blue-deep);
  font-size: 0.92rem;
}

h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.25;
  font-weight: 800;
}

.section-head p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.15rem 1.35rem;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: var(--ice);
  color: var(--blue-deep);
}

.card-icon svg { width: 1.35rem; height: 1.35rem; }

.card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.15rem;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.find-box {
  max-width: 46rem;
  padding: 1.6rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.find-box h2 { margin-bottom: 0.6rem; }

.find-box p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-find { padding-block: 0 4.5rem; }

.section-location {
  background:
    linear-gradient(180deg, transparent, rgba(21, 99, 216, 0.05) 18%, transparent);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.facts {
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.facts div {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.facts dt {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
}

.facts dd {
  margin: 0.2rem 0 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.facts a { text-decoration: none; }
.facts a:hover { color: var(--blue-deep); }

.map-frame {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #d9e4f0;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  background: var(--ink);
  color: #d5e2f2;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding-block: 1.6rem 1.8rem;
}

.site-footer strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
}

.site-footer p {
  margin: 0.15rem 0 0;
  color: #9aafc6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
}

.footer-links a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-links a:hover { color: #9ec4ff; }

.wa-float {
  position: fixed;
  z-index: 40;
  inset-inline-end: 1.15rem;
  bottom: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3.25rem;
  padding-block: 0.45rem;
  padding-inline: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--wa);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(15, 122, 98, 0.35);
}

.wa-float svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
}

.wa-float:hover { background: var(--wa-deep); }

@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero { min-height: 560px; align-items: flex-end; }
  .hero::after,
  [dir="ltr"] .hero::after {
    background: linear-gradient(to top, rgba(7, 24, 44, 0.94) 0%, rgba(7, 24, 44, 0.72) 48%, rgba(7, 24, 44, 0.2) 100%);
  }
  .hero-layout { padding-block: 7rem 2.2rem; }
  .brand-logo { height: 3.8rem; }
  .menu-btn { display: inline-grid; place-items: center; }

  .nav {
    display: none;
    position: absolute;
    inset-inline: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.75rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav.is-open { display: flex; }

  .nav a,
  .lang-btn {
    margin: 0;
    text-align: start;
  }

  .cards { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
