/* ── Fonts ──────────────────────────────────────────────── */
@font-face {
  font-family: 'ThmanyaDisplay';
  src: url('/assets/fonts/thmanyahserifdisplay-Bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: 'ThmanyaDisplay';
  src: url('/assets/fonts/thmanyahserifdisplay-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'ThmanyaDisplay';
  src: url('/assets/fonts/thmanyahserifdisplay-Black.woff2') format('woff2');
  font-weight: 900; font-display: swap;
}
@font-face {
  font-family: 'ThmanyaText';
  src: url('/assets/fonts/thmanyahseriftext-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'ThmanyaText';
  src: url('/assets/fonts/thmanyahseriftext-Bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Base ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'ThmanyaText', serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  direction: rtl;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('/assets/bg-brand25.png') center center / cover no-repeat;
  z-index: -2;
  pointer-events: none;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
  pointer-events: none;
}

/* ── Nav ───────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-logo img { height: 34px; width: auto; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: 'ThmanyaText', serif;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #25D366 !important;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.nav-wa:hover { opacity: 0.88; }

/* ── Page container ────────────────────────────────────── */
.page-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 28px 100px;
}

/* ── Hero ──────────────────────────────────────────────── */
.hero { margin-bottom: 56px; }

.en-label {
  display: block;
  font-family: 'ThmanyaDisplay', serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  background: linear-gradient(135deg, #4e1400 0%, #9b3510 30%, #c85018 55%, #8c2d0a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: -0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  font-family: 'ThmanyaDisplay', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}

/* ── Sections ──────────────────────────────────────────── */
.section { margin-top: 60px; }

h2 {
  font-family: 'ThmanyaDisplay', serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
}

p {
  font-family: 'ThmanyaText', serif;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 14px;
}
p:last-child { margin-bottom: 0; }

strong {
  color: #ff8f55;
  font-weight: 700;
}

/* ── Glass card ────────────────────────────────────────── */
.glass {
  background: rgba(15, 10, 8, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ── Cards grid ────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.card {
  padding: 20px 22px;
}

.card-title {
  font-family: 'ThmanyaText', serif;
  font-weight: 700;
  color: #ff8f55;
  font-size: 0.92rem;
  margin-bottom: 7px;
}

.card p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Table ─────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  margin-top: 24px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(15, 10, 8, 0.66);
  backdrop-filter: blur(14px);
  min-width: 520px;
}

thead tr { background: rgba(155, 53, 16, 0.18); }

th {
  font-family: 'ThmanyaText', serif;
  font-weight: 700;
  color: #ff8f55;
  padding: 14px 18px;
  text-align: right;
  font-size: 0.88rem;
  white-space: nowrap;
}

td {
  font-family: 'ThmanyaText', serif;
  color: rgba(255, 255, 255, 0.72);
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  line-height: 1.55;
}

tr:hover td { background: rgba(255, 255, 255, 0.025); }

/* ── Styled list ───────────────────────────────────────── */
.styled-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.styled-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: 'ThmanyaText', serif;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  font-size: 0.95rem;
}

.styled-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c85018;
  box-shadow: 0 0 6px 2px rgba(200, 80, 24, 0.35);
  flex-shrink: 0;
  margin-top: 8px;
}

/* ── Highlight box ─────────────────────────────────────── */
.highlight-box {
  background: rgba(155, 53, 16, 0.1);
  border: 1px solid rgba(200, 80, 24, 0.22);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 16px 0;
}
.highlight-box p { color: rgba(255, 255, 255, 0.78); }

/* ── Steps (process) ───────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }

.step { padding: 20px 24px; }

.step-title {
  font-family: 'ThmanyaText', serif;
  font-weight: 700;
  color: #ff8f55;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.step p { font-size: 0.92rem; margin-bottom: 0; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }

.faq-item { padding: 20px 24px; }

.faq-q {
  font-family: 'ThmanyaText', serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 9px;
}

.faq-a {
  font-family: 'ThmanyaText', serif;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ── CTA ───────────────────────────────────────────────── */
.cta-section {
  margin-top: 72px;
  text-align: center;
  padding: 48px 28px;
}

.cta-section p { font-size: 1.05rem; margin-bottom: 24px; color: rgba(255, 255, 255, 0.8); }

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: 'ThmanyaText', serif;
  font-weight: 700;
  font-size: 1rem;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.cta-btn:hover { opacity: 0.9; transform: scale(1.03); }

/* ── Footer ────────────────────────────────────────────── */
footer {
  margin-top: 80px;
  padding: 40px 28px 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}

.footer-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 20px;
}

.footer-pages a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-family: 'ThmanyaText', serif;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-pages a:hover { color: rgba(255, 255, 255, 0.9); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-family: 'ThmanyaText', serif;
  font-size: 0.82rem;
  transition: color 0.2s;
}
.footer-social a:hover { color: rgba(255, 255, 255, 0.75); }

.footer-copy {
  color: rgba(255, 255, 255, 0.2);
  font-family: 'ThmanyaText', serif;
  font-size: 0.75rem;
}

/* ── Floating WhatsApp ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.wa-float:hover { transform: scale(1.08); }

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 600px) {
  .page-container { padding: 40px 16px 80px; }
  .site-nav { padding: 12px 16px; }
  .nav-links a:not(.nav-wa) { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 36px 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-btn, .wa-float, .nav-wa { transition: none; }
}
