:root {
  --bg: #f8f5f0;
  --surface: #ffffff;
  --surface-soft: #fbf7f2;
  --text: #1d1b18;
  --muted: #72695c;
  --primary: #bf7d2b;
  --primary-dark: #7a5120;
  --primary-light: #ddb688;
  --secondary: #3f3123;
  --border: rgba(34, 27, 18, 0.09);
  --shadow: 0 16px 42px rgba(18, 11, 5, 0.08);
  --shadow-strong: 0 22px 52px rgba(18, 11, 5, 0.18);
  --radius: 26px;
  --container: 1180px;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Tahoma", "Arial", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; transition: .25s ease; }
a:hover { color: var(--primary); }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, #fcfaf7, #f6f1e8); }
.section-dark {
  background:
    radial-gradient(circle at top left, rgba(221,182,136,.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(191,125,43,.12), transparent 30%),
    linear-gradient(180deg, #191511, #231b14);
  color: #fff;
}
.section-title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 1.12;
}
.section-subtitle {
  color: var(--muted);
  max-width: 730px;
  margin: 0 auto;
}
.section-subtitle-left { margin-inline: 0; }
.section-head { margin-bottom: 42px; }
.section-head.center { text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--primary-dark);
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  opacity: .5;
}
.eyebrow-light { color: rgba(255,255,255,.85); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #c99350);
  color: #fff;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  transform: translateY(0);
  cursor: pointer;
}
.btn:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-strong); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.26);
  box-shadow: none;
}
.hero .btn-outline,
.cta-band .btn-outline { color: #fff; }
.btn-secondary {
  background: #fff;
  color: var(--primary-dark);
}
.btn-secondary:hover { color: var(--primary-dark); background: #f6ebdc; }
.btn-header {
  min-height: 46px;
  padding-inline: 18px;
  font-size: .95rem;
  box-shadow: none;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 26px rgba(0,0,0,.06); background: rgba(255,255,255,.95); }
.topbar {
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.45);
  font-size: .92rem;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.site-header .inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 800;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 16px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-title { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 900; }
.brand-tagline { color: var(--muted); font-size: .9rem; }
.header-actions,
.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.main-nav ul,
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a,
.footer-nav a { font-weight: 800; position: relative; }
.main-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .25s ease;
}
.main-nav a:hover::after,
.footer-nav a:hover::after { width: 100%; }

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.lang-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: .25s ease;
}
.lang-option.is-current {
  background: var(--primary);
  color: #fff;
}
.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  place-items: center;
  gap: 4px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 42px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(221,182,136,.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(191,125,43,.24), transparent 34%),
    linear-gradient(135deg, #17120f 0%, #2a2119 48%, #7a5120 100%);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/logo-mark.png') no-repeat;
  background-size: min(40vw, 460px);
  background-position: 88% 52%;
  opacity: .07;
}
html[lang="en"] .hero::before { background-position: 12% 52%; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  opacity: .45;
}
.orb-1 { width: 220px; height: 220px; background: rgba(221,182,136,.2); top: 12%; inset-inline-start: 10%; }
.orb-2 { width: 180px; height: 180px; background: rgba(191,125,43,.18); bottom: 10%; inset-inline-end: 12%; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: center;
  padding: 70px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
}
.hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 1.05;
}
.hero-content p {
  margin: 0 0 30px;
  max-width: 690px;
  color: rgba(255,255,255,.84);
  font-size: 1.07rem;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-inline-stats {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-inline-stats div { min-width: 148px; }
.hero-inline-stats strong {
  display: block;
  font-size: 1.45rem;
  color: #fff;
}
.hero-inline-stats span { color: rgba(255,255,255,.72); font-size: .95rem; }
.hero-card {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 42px rgba(0,0,0,.18);
}
.glass-card-head h2 { margin: 0 0 10px; font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.hero-checks { display: grid; gap: 12px; margin: 22px 0; }
.check-item {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.92);
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat-box {
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.stat-box strong { display: block; font-size: 1.6rem; }
.stat-box span { color: rgba(255,255,255,.72); font-size: .92rem; }

.trusted-strip {
  position: relative;
  z-index: 2;
  margin-top: -34px;
}
.trusted-items {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.trusted-items span {
  text-align: center;
  font-weight: 800;
  color: var(--secondary);
}

.about-box,
.service-card,
.feature-card,
.step-card,
.contact-card,
.form-wrap,
.faq-list details {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.about-box,
.contact-card,
.form-wrap { padding: 34px; }
.logo-showcase {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(221,182,136,.22), transparent 40%),
    var(--surface);
}
.logo-showcase img {
  width: min(100%, 300px);
  margin: 0 auto 18px;
}
.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.point {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(180deg, #fcf6ed, #f5ecdf);
  font-weight: 800;
}
.services-grid,
.features-grid,
.steps-grid {
  display: grid;
  gap: 20px;
}
.services-grid,
.features-grid { grid-template-columns: repeat(4, 1fr); }
.steps-grid { grid-template-columns: repeat(3, 1fr); }
.service-card,
.feature-card,
.step-card {
  padding: 26px 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover,
.feature-card:hover,
.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(191,125,43,.28);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
}
.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: #fff;
  font-size: 1.45rem;
}
.service-card h3,
.feature-card h3,
.step-card h3 { margin: 0 0 10px; font-size: 1.16rem; }
.service-card p,
.feature-card p,
.step-card p,
.about-box p,
.contact-card p,
.footer-copy,
.cta-band p,
.faq-list p { margin: 0; color: var(--muted); }
.section-dark .feature-card,
.section-dark .section-title,
.section-dark .eyebrow,
.section-dark .feature-card p,
.section-dark .feature-card h3 { color: #fff; }
.section-dark .feature-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  box-shadow: none;
  text-align: center;
}
.section-dark .feature-card p { color: rgba(255,255,255,.76); }
.section-dark .service-icon { margin-inline: auto; }
.step-card { position: relative; overflow: hidden; }
.step-number {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(191,125,43,.75);
}

.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 20px 22px; }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  position: relative;
  padding-inline-end: 30px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  color: var(--primary-dark);
  font-size: 1.4rem;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin-top: 12px; }

.contact-list { display: grid; gap: 16px; margin-top: 22px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.contact-item:last-child { border-bottom: 0; }
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f6ead7, #f2debc);
}
.contact-label { color: var(--muted); font-size: .92rem; }
.contact-value { font-weight: 800; }
.form-title { margin: 0 0 18px; font-size: 1.4rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field.full { grid-column: 1 / -1; }
label { display: block; margin-bottom: 8px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(38,38,38,.12);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(191,125,43,.55);
  box-shadow: 0 0 0 4px rgba(191,125,43,.12);
  transform: translateY(-1px);
}
textarea { min-height: 160px; resize: vertical; }
.form-submit-wrap { margin-top: 4px; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.1), transparent 30%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: var(--shadow-strong);
}
.cta-band h2 { margin: 0 0 10px; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.cta-band p { color: rgba(255,255,255,.82); }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255,255,255,.8);
  background: linear-gradient(180deg, #17130f, #110e0b);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { margin-bottom: 14px; }
.footer-brand .brand-title,
.footer-title { color: #fff; }
.footer-copy { color: rgba(255,255,255,.68); max-width: 440px; }
.footer-contact-list {
  display: grid;
  gap: 10px;
}
.footer-contact-list a { color: rgba(255,255,255,.76); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255,255,255,.62);
}

.whatsapp-float {
  position: fixed;
  inset-inline-end: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 18px 38px rgba(37,211,102,.34);
  font-size: 26px;
  z-index: 999;
}
.whatsapp-float:hover { color: #fff; transform: translateY(-3px); }

html[lang="en"] body { font-family: Arial, Helvetica, sans-serif; }
html[lang="en"] .hero-content p,
html[lang="en"] .service-card p,
html[lang="en"] .feature-card p,
html[lang="en"] .faq-list p,
html[lang="en"] .contact-card p,
html[lang="en"] .cta-band p,
html[lang="en"] .footer-copy,
html[lang="en"] .brand-tagline,
html[lang="en"] .section-subtitle { max-width: 62ch; }

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .faq-grid,
  .services-grid,
  .features-grid,
  .steps-grid,
  .footer-grid,
  .trusted-items {
    grid-template-columns: 1fr 1fr;
  }
  .header-cta-wrap .btn-header { display: none; }
}

@media (max-width: 840px) {
  :root { --header-height: 78px; }
  .topbar-inner,
  .site-header .inner,
  .header-actions,
  .header-cta-wrap,
  .cta-band,
  .footer-bottom { flex-wrap: wrap; }
  .site-header .inner { padding: 12px 0; }
  .mobile-toggle { display: inline-grid; }
  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline: 16px;
    display: none;
    background: rgba(255,255,255,.98);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 18px;
  }
  .main-nav.is-open { display: block; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  html[lang="ar"] .main-nav ul { align-items: flex-end; }
  .hero { min-height: auto; }
  .hero::before { background-size: 68vw; opacity: .05; }
  .hero-content h1 { font-size: clamp(2.2rem, 11vw, 3.8rem); }
  .hero-grid,
  .about-grid,
  .contact-grid,
  .faq-grid,
  .services-grid,
  .features-grid,
  .steps-grid,
  .trusted-items,
  .footer-grid,
  .about-points,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 78px 0; }
  .hero-card,
  .about-box,
  .contact-card,
  .form-wrap,
  .step-card,
  .service-card,
  .feature-card { padding: 24px; }
  .cta-band,
  .footer-bottom { align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .topbar { display: none; }
  .brand img { width: 54px; height: 54px; }
  .brand-tagline { display: none; }
  .hero-actions,
  .cta-actions { flex-direction: column; }
  .hero-actions .btn,
  .cta-actions .btn,
  .form-submit-wrap .btn { width: 100%; }
  .hero-inline-stats { gap: 12px; }
  .trusted-strip { margin-top: -20px; }
  .hero-stats { grid-template-columns: 1fr; }
}
