:root {
  --bg: #0d0d0e;
  --surface: #151517;
  --surface-2: #1e1f22;
  --text: #f6f6f7;
  --muted: #b8b8be;
  --gold: #c5a46d;
  --gold-soft: #f2e5cf;
  --line: #2e2f33;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", "Plus Jakarta Sans", sans-serif;
  background: linear-gradient(180deg, #0a0a0b, #111214);
  color: var(--text);
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.neutral {
  background: #121315;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(12, 12, 14, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.brand-logo {
  width: 280px;
  height: auto;
  display: block;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: all 0.25s ease;
  font-size: 0.94rem;
}

.nav a:hover {
  background: rgba(197, 164, 109, 0.15);
  color: var(--gold-soft);
}

.nav a.active {
  background: rgba(197, 164, 109, 0.2);
  color: var(--gold-soft);
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.flag-btn {
  border: 1px solid rgba(197, 164, 109, 0.45);
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold-soft);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  justify-content: center;
  transition: all 0.25s ease;
  padding: 0;
}

.flag-btn img {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  object-fit: cover;
}

.flag-btn:hover,
.flag-btn.active {
  background: rgba(197, 164, 109, 0.2);
  color: #fff5e3;
  border-color: rgba(197, 164, 109, 0.75);
}

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(197, 164, 109, 0.45);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: #f2e5cf;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
}

.hero-bg-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 18s infinite;
  transform: scale(1.04);
}

.hero-bg-slider img:nth-child(1) {
  animation-delay: 0s;
}

.hero-bg-slider img:nth-child(2) {
  animation-delay: 6s;
}

.hero-bg-slider img:nth-child(3) {
  animation-delay: 12s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 12%, rgba(197, 164, 109, 0.18), transparent 40%),
    linear-gradient(110deg, rgba(7, 7, 8, 0.88) 0%, rgba(7, 7, 8, 0.65) 50%, rgba(7, 7, 8, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-soft);
  border: 1px solid rgba(197, 164, 109, 0.45);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(2rem, 4.8vw, 4.4rem);
  line-height: 1.2;
  margin: 0;
  max-width: 900px;
}

.hero-sub {
  font-size: 1.08rem;
  color: #dadade;
  max-width: 760px;
  margin-top: 16px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  cursor: pointer;
}

.btn-gold {
  background: linear-gradient(140deg, #d3b37d, #aa8448);
  color: #121214;
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
}

.stats-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.stat-card {
  padding: 16px;
  border-radius: 16px;
}

.stat-card h3 {
  margin: 0;
  font-size: 1.9rem;
  color: var(--gold-soft);
}

.stat-card p {
  margin: 4px 0 0;
  color: #f0f0f3;
  font-size: 0.9rem;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.about-card {
  border-radius: 18px;
  padding: 20px;
}

.about-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.about-card li {
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.24);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.cards-grid.small {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.adv-card,
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover,
.adv-card:hover,
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 164, 109, 0.6);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.26);
}

.service-card span {
  font-size: 1.8rem;
}

.service-card h3 {
  margin: 8px 0;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
}

.gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery figcaption {
  padding: 10px 12px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.partners-grid div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  color: #d7d7db;
  background: var(--surface-2);
  font-size: 0.86rem;
}

.sub-title {
  margin-top: 32px;
}

.contact-box {
  border-radius: 18px;
  padding: 20px;
}

.contact-line {
  margin: 6px 0;
  color: #d7d7db;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.ci-icon {
  width: 17px;
  height: 17px;
  fill: var(--gold-soft);
  flex-shrink: 0;
}

.email-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.email-link:hover {
  color: var(--gold-soft);
}

.socials {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #17171a;
  background: var(--gold);
  font-weight: 700;
}

.social-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

form {
  display: grid;
  gap: 10px;
}

input,
textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(8, 8, 9, 0.35);
  color: var(--white);
  font: inherit;
  padding: 11px 12px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.map-wrap iframe {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: 16px;
}

.newsletter-box {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  min-width: 240px;
}

.whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #0f0f10;
  background: linear-gradient(140deg, #d8b981, #b08a4f);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.wa-icon {
  width: 26px;
  height: 26px;
}

.number-inline {
  direction: ltr;
  unicode-bidi: bidi-override;
  display: inline-block;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b0b0c;
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-wrap a {
  color: var(--gold-soft);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroFade {
  0% {
    opacity: 0;
  }

  8% {
    opacity: 1;
  }

  29% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

[dir="ltr"] body {
  font-family: "Plus Jakarta Sans", "Cairo", sans-serif;
}

[dir="ltr"] .logo {
  flex-direction: row;
}

[dir="ltr"] .hero-content,
[dir="ltr"] .section {
  text-align: left;
}

@media (max-width: 1024px) {
  .cards-grid,
  .cards-grid.small,
  .gallery,
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 70px 0;
  }

  .nav-wrap {
    min-height: auto;
    padding: 10px 0;
    flex-wrap: nowrap;
  }

  .menu-btn {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(12, 12, 14, 0.98);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
    z-index: 120;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 12px;
  }

  .brand-logo {
    width: 215px;
  }

  .lang-switcher {
    margin-inline-start: 0;
  }

  .flag-btn {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 9vw, 2.3rem);
  }

  .hero-sub {
    font-size: 0.98rem;
  }

  .cards-grid,
  .cards-grid.small,
  .gallery,
  .partners-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-box,
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
}
