/* ============================================================
   GLOBAL ACCESS COMPANY (GAC) — Black Industrial Theme
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Alexandria:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap");

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --surface: #0d0d0d;
  --surface-2: #111111;
  --surface-3: #161616;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(232, 154, 34, 0.38);
  --orange: #e89a22;
  --orange-light: #f0b050;
  --text: #ffffff;
  --text-70: rgba(255, 255, 255, 0.7);
  --text-45: rgba(255, 255, 255, 0.45);
  --text-25: rgba(255, 255, 255, 0.25);
  --orange-glow: rgba(232, 154, 34, 0.12);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.5);
  --shadow-hover:
    0 8px 40px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(232, 154, 34, 0.25);
  --font-ar: "Cairo", "Alexandria", sans-serif;
  --font-en: "Inter", "Montserrat", sans-serif;
  --font-brand: "Montserrat", sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
}

/* ── Reset ──────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
[dir="rtl"] body {
  font-family: var(--font-ar);
}
[dir="ltr"] body {
  font-family: var(--font-en);
}

/* Ensure utility font classes use the theme's brand font (matches About page) */
[dir="rtl"] .font-mono,
[dir="ltr"] .font-mono {
  font-family: var(--font-brand);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}
ul {
  list-style: none;
}
input,
textarea {
  font-family: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 2px;
}

/* ── Container / Layout ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}
@media (min-width: 1280px) {
  .container {
    padding: 0 48px;
  }
}

.section {
  padding: 88px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}

/* ── Typography ─────────────────────────────────────────── */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.label-tag::before,
.label-tag::after {
  content: "";
  display: block;
  height: 1px;
  width: 32px;
  background: var(--orange);
  opacity: 0.6;
}

.section-title {
  font-weight: 900;
  color: var(--text);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
}
[dir="rtl"] .section-title {
  font-family: var(--font-ar);
}
[dir="ltr"] .section-title {
  font-family: var(--font-brand);
}

.section-subtitle {
  color: var(--text-45);
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.85;
  max-width: 560px;
}
[dir="rtl"] .section-subtitle {
  font-family: var(--font-ar);
}
[dir="ltr"] .section-subtitle {
  font-family: var(--font-en);
}

.section-head {
  margin-bottom: 56px;
}
.section-head.center {
  text-align: center;
}
.section-head.center .section-subtitle {
  margin: 12px auto 0;
}
.section-head:not(.center) .section-subtitle {
  margin-top: 12px;
}

/* ── Orange line divider ────────────────────────────────── */
.o-line {
  display: block;
  height: 2px;
  width: 48px;
  background: var(--orange);
  margin-bottom: 20px;
}
.center .o-line {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn i {
  font-size: 12px;
  flex-shrink: 0;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s;
  pointer-events: none;
}
.btn:hover::after {
  background: rgba(255, 255, 255, 0.08);
}
.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--orange);
  color: #000;
  box-shadow: 0 4px 20px rgba(232, 154, 34, 0.25);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 154, 34, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.btn-ghost:hover {
  border-color: rgba(232, 154, 34, 0.5);
  background: rgba(232, 154, 34, 0.06);
  transform: translateY(-2px);
}
.btn-ghost i {
  color: var(--orange);
}

/* ── Loading Screen ─────────────────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.7s var(--ease),
    visibility 0.7s var(--ease);
}
#loader.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.loader-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 1.5px solid rgba(232, 154, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.loader-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--orange);
  animation: spin 1.2s linear infinite;
}
.loader-logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(232, 154, 34, 0.25));
}
.loader-name {
  font-family: var(--font-ar);
  color: var(--text-45);
  font-size: 12px;
}
.loader-en {
  font-family: var(--font-brand);
  color: rgba(232, 154, 34, 0.5);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.loader-track {
  width: 0;
  height: 1.5px;
  max-width: 160px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  animation: track 2s ease forwards;
}

/* ── Scroll Progress ────────────────────────────────────── */
#prog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transition: width 0.08s linear;
}

/* ── Navbar ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 18px 0;
  transition:
    padding 0.35s var(--ease),
    background 0.35s,
    border-color 0.35s;
}
#nav.stuck {
  padding: 12px 0;
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid rgba(232, 154, 34, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}
.nav-logo:hover .logo-img {
  transform: scale(1.06);
}
.logo-text {
  display: none;
  flex-direction: column;
  line-height: 1;
}
@media (min-width: 480px) {
  .logo-text {
    display: flex;
  }
}
.logo-ar {
  font-family: var(--font-ar);
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 3px;
}
.logo-en {
  font-family: var(--font-brand);
  color: var(--orange);
  font-size: 8.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

.nav-a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: var(--r-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-70);
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-a i {
  font-size: 11px;
  color: var(--text-25);
  transition: color 0.2s;
}
.nav-a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.nav-a:hover i,
.nav-a.active i {
  color: var(--orange);
}
.nav-a.active {
  color: var(--orange);
  background: rgba(232, 154, 34, 0.08);
  border: 1px solid rgba(232, 154, 34, 0.2);
}

/* Right actions */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  padding: 7px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(232, 154, 34, 0.35);
  color: var(--orange);
  font-family: var(--font-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.lang-toggle:hover {
  background: rgba(232, 154, 34, 0.08);
}

.nav-cta-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  background: var(--orange);
  color: #000;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(232, 154, 34, 0.2);
}
.nav-cta-btn i {
  font-size: 11px;
}
@media (min-width: 1024px) {
  .nav-cta-btn {
    display: flex;
  }
}
.nav-cta-btn:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 154, 34, 0.35);
}

/* ===== Header ordering by direction ===== */
/* Arabic (rtl): actions left, menu center, logo right. English (ltr): reverse. */
#nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#nav .container .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .nav-links {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

[dir="rtl"] #nav .nav-right {
  order: 1;
}
[dir="rtl"] #nav .nav-links {
  order: 2;
}
[dir="rtl"] #nav .nav-logo {
  order: 3;
}

[dir="ltr"] #nav .nav-logo {
  order: 1;
}
[dir="ltr"] #nav .nav-links {
  order: 2;
}
[dir="ltr"] #nav .nav-right {
  order: 3;
}

/* Hamburger */
.ham {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color 0.2s;
}
@media (min-width: 1024px) {
  .ham {
    display: none;
  }
}
.ham:hover {
  border-color: rgba(232, 154, 34, 0.3);
}
.ham span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition:
    transform 0.3s var(--ease),
    opacity 0.3s,
    width 0.3s;
  transform-origin: center;
}
.ham.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}
.ham.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.ham.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Menu */
#mob-menu {
  position: fixed;
  inset: 0;
  z-index: 899;
  background: rgba(5, 5, 5, 0.97);
  display: flex;
  flex-direction: column;
  padding: 88px 24px 40px;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}
#mob-menu.open {
  clip-path: inset(0 0 0% 0);
}
.mob-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--r-md);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-70);
  border: 1px solid transparent;
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
  margin-bottom: 4px;
}
.mob-link i {
  font-size: 14px;
  color: var(--text-25);
  width: 18px;
  transition: color 0.2s;
}
.mob-link:hover,
.mob-link.active {
  color: var(--orange);
  background: rgba(232, 154, 34, 0.07);
  border-color: rgba(232, 154, 34, 0.2);
}
.mob-link:hover i,
.mob-link.active i {
  color: var(--orange);
}
.mob-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.mob-foot-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-25);
  font-size: 13px;
  padding: 5px 0;
}
.mob-foot-row i {
  color: var(--orange);
  font-size: 11px;
  width: 14px;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
  z-index: 1;
}
.slide.on {
  opacity: 1;
  z-index: 2;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s var(--ease);
}
.slide.on img {
  transform: scale(1);
}

/* Overlays */
.hero-ov {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.5) 0%,
    rgba(5, 5, 5, 0.35) 40%,
    rgba(5, 5, 5, 0.92) 100%
  );
}
.hero-ov-side {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to right,
    rgba(5, 5, 5, 0.55) 0%,
    transparent 55%
  );
}
[dir="ltr"] .hero-ov-side {
  background: linear-gradient(to left, rgba(5, 5, 5, 0.55) 0%, transparent 55%);
}

/* Content */
.hero-body {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
}
.hero-body .container {
  padding-top: 72px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.6s 0.4s var(--ease) forwards;
}
.hero-badge-bar {
  width: 28px;
  height: 1.5px;
  background: var(--orange);
}
.hero-badge-txt {
  font-family: var(--font-brand);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-h1 {
  font-weight: 900;
  color: var(--text);
  font-size: clamp(34px, 5.5vw, 72px);
  line-height: 1.16;
  max-width: 780px;
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s var(--ease) forwards;
}
[dir="rtl"] .hero-h1 {
  font-family: var(--font-ar);
}
[dir="ltr"] .hero-h1 {
  font-family: var(--font-brand);
}

.hero-p {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.85;
  max-width: 620px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s var(--ease) forwards;
}
[dir="rtl"] .hero-p {
  font-family: var(--font-ar);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  opacity: 0;
  animation: fadeUp 0.7s 1s var(--ease) forwards;
}
[dir="rtl"] .hero-actions {
  flex-direction: row-reverse;
}

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 8px;
}
.hdot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.25);
  transition:
    width 0.35s var(--ease),
    background 0.35s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.hdot.on {
  width: 24px;
  background: var(--orange);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 28px;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
[dir="ltr"] .scroll-cue {
  right: auto;
  left: 28px;
}
.scroll-cue i {
  color: rgba(255, 255, 255, 0.2);
  font-size: 9px;
  animation: cue 2s ease-in-out infinite;
}
.scroll-cue i:last-child {
  animation-delay: 0.35s;
  opacity: 0.5;
}

/* ── Page Banner (About) ───────────────────────────────── */
.page-banner {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.banner-img {
  position: absolute;
  inset: 0;
}
.banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.5) 0%,
    rgba(5, 5, 5, 0.3) 40%,
    rgba(5, 5, 5, 1) 100%
  );
}
.banner-img-side {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(5, 5, 5, 0.65) 0%,
    transparent 65%
  );
}
[dir="ltr"] .banner-img-side {
  background: linear-gradient(to left, rgba(5, 5, 5, 0.65) 0%, transparent 65%);
}
.banner-body {
  position: relative;
  z-index: 2;
  padding: 110px 0 56px;
  width: 100%;
}
.page-h1 {
  font-weight: 900;
  color: var(--text);
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.1;
  margin-bottom: 24px;
}
[dir="rtl"] .page-h1 {
  font-family: var(--font-ar);
}
[dir="ltr"] .page-h1 {
  font-family: var(--font-brand);
}
.page-p {
  color: var(--text-70);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.9;
  max-width: 700px;
}
.page-p + .page-p {
  margin-top: 16px;
  color: var(--text-45);
}

/* ── Contact Header ─────────────────────────────────────── */
.contact-head {
  padding: 148px 0 72px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 0%,
    rgba(232, 154, 34, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

/* ── Section Shared ─────────────────────────────────────── */

/* Products */
.products-section {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.products-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 154, 34, 0.03) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(252px, 1fr));
  gap: 20px;
}
@media (max-width: 479px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Card base */
.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s,
    box-shadow 0.35s;
  cursor: default;
  position: relative;
}
.pcard:hover {
  transform: translateY(-7px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}

/* Card with image */
.pcard-img {
  height: 196px;
  overflow: hidden;
  position: relative;
  background: var(--surface-3);
}
.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pcard:hover .pcard-img img {
  transform: scale(1.07);
}
.pcard-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--surface) 0%, transparent 60%);
}

/* Icon-only card */
.pcard-icon {
  height: 196px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface-3), var(--surface));
}
.pcard-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(232, 154, 34, 0.03) 28px,
      rgba(232, 154, 34, 0.03) 29px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(232, 154, 34, 0.03) 28px,
      rgba(232, 154, 34, 0.03) 29px
    );
}
.pcard-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(232, 154, 34, 0) 0%,
    transparent 65%
  );
  transition: background 0.45s;
}
.pcard:hover .pcard-icon::after {
  background: radial-gradient(
    circle at center,
    rgba(232, 154, 34, 0.07) 0%,
    transparent 65%
  );
}
.pcard-icon i {
  font-size: 52px;
  color: rgba(232, 154, 34, 0.18);
  position: relative;
  z-index: 1;
  transition:
    color 0.35s,
    transform 0.35s var(--ease);
}
.pcard:hover .pcard-icon i {
  color: rgba(232, 154, 34, 0.38);
  transform: scale(1.08);
}

/* Card animated top border */
.pcard::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 2;
}
.pcard:hover::after {
  opacity: 1;
}

/* Card body */
.pcard-body {
  padding: 18px 18px 20px;
  background: var(--surface);
}
.pcard-meta {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pcard-ico-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(232, 154, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.pcard-ico-wrap i {
  font-size: 13px;
  color: var(--orange);
}
.pcard:hover .pcard-ico-wrap {
  background: rgba(232, 154, 34, 0.18);
}
.pcard-title {
  font-weight: 700;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.4;
  transition: color 0.25s;
}
.pcard:hover .pcard-title {
  color: var(--orange);
}
.pcard-desc {
  color: var(--text-25);
  font-size: 11.5px;
  margin-top: 4px;
  line-height: 1.55;
}

/* ── Quality Section ────────────────────────────────────── */
.quality-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.quality-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 48px,
      rgba(232, 154, 34, 0.02) 48px,
      rgba(232, 154, 34, 0.02) 49px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 48px,
      rgba(232, 154, 34, 0.02) 48px,
      rgba(232, 154, 34, 0.02) 49px
    );
  pointer-events: none;
}

.quality-grid {
  display: grid;
  gap: 64px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .quality-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.q-left .section-head {
  margin-bottom: 32px;
}
.q-desc {
  color: var(--text-45);
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 32px;
}

.stds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.std {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.std:hover {
  border-color: rgba(232, 154, 34, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.std-header {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 6px;
}
.std-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(232, 154, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.std-ico i {
  font-size: 11px;
  color: var(--orange);
}
.std-name {
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--orange);
  font-size: 11.5px;
}
.std-desc {
  color: var(--text-25);
  font-size: 11.5px;
}

/* Stats grid */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.stat::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.stat:hover {
  border-color: rgba(232, 154, 34, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}
.stat:hover::after {
  opacity: 1;
}
.stat-n {
  font-family: var(--font-brand);
  font-weight: 900;
  color: var(--orange);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  text-shadow: 0 0 24px rgba(232, 154, 34, 0.3);
}
.stat-l {
  color: var(--text-45);
  font-size: 12.5px;
  margin-top: 8px;
}

/* ── Why Us ─────────────────────────────────────────────── */
.why-section {
  position: relative;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
}
.why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}
.why-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-2) 0%,
    rgba(10, 10, 10, 0.82) 50%,
    var(--bg-2) 100%
  );
}
.why-inner {
  position: relative;
  z-index: 2;
}

.why-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
@media (min-width: 1280px) {
  .why-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s,
    box-shadow 0.35s;
  cursor: default;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(232, 154, 34, 0),
    transparent 65%
  );
  transition: background 0.45s;
  border-radius: var(--r-lg);
}
.why-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.why-card:hover {
  transform: translateY(-7px);
  border-color: rgba(232, 154, 34, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}
.why-card:hover::before {
  background: radial-gradient(
    circle at 50% 0%,
    rgba(232, 154, 34, 0.1),
    transparent 65%
  );
}
.why-card:hover::after {
  opacity: 1;
}

.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 18px;
  background: rgba(232, 154, 34, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.why-icon i {
  font-size: 24px;
  color: var(--orange);
}
.why-card:hover .why-icon {
  background: rgba(232, 154, 34, 0.16);
  box-shadow: 0 0 20px rgba(232, 154, 34, 0.15);
}
.why-title {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  transition: color 0.25s;
}
.why-card:hover .why-title {
  color: var(--orange);
}
.why-desc {
  color: var(--text-25);
  font-size: 12.5px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ── CTA ────────────────────────────────────────────────── */
.cta-section {
  background: var(--bg);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 65% 55% at 50% 50%,
    rgba(232, 154, 34, 0.055) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 154, 34, 0.25),
    transparent
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-weight: 900;
  color: var(--text);
  font-size: clamp(26px, 4.5vw, 56px);
  line-height: 1.18;
  margin-bottom: 14px;
}
[dir="rtl"] .cta-title {
  font-family: var(--font-ar);
}
[dir="ltr"] .cta-title {
  font-family: var(--font-brand);
}
.cta-sub {
  color: var(--text-45);
  font-size: 16px;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ── About Work Areas ───────────────────────────────────── */
.work-section {
  background: var(--bg-2);
  position: relative;
}
.work-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(206px, 1fr));
}
@media (max-width: 479px) {
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px 18px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s;
  cursor: default;
}
.work-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.work-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 154, 34, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}
.work-card:hover::after {
  opacity: 1;
}
.work-ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  margin: 0 auto 14px;
  background: rgba(232, 154, 34, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.work-ico i {
  font-size: 20px;
  color: var(--orange);
}
.work-card:hover .work-ico {
  background: rgba(232, 154, 34, 0.16);
}
.work-name {
  font-weight: 600;
  color: var(--text-70);
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.25s;
}
.work-card:hover .work-name {
  color: var(--text);
}

/* ── Two-col image + text (Import / Vision) ─────────────── */
.split {
  background: var(--bg);
  position: relative;
}
.split-grid {
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .split-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.split-img {
  position: relative;
}
.split-img-inner {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.split-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split-img-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.45) 0%, transparent 55%);
}
.split-deco-a {
  position: absolute;
  bottom: -16px;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  border: 1.5px solid rgba(232, 154, 34, 0.18);
  z-index: -1;
}
[dir="rtl"] .split-deco-a {
  right: -16px;
}
[dir="ltr"] .split-deco-a {
  left: -16px;
}
.split-deco-b {
  position: absolute;
  top: -16px;
  width: 64px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid rgba(232, 154, 34, 0.12);
  z-index: -1;
}
[dir="rtl"] .split-deco-b {
  left: -16px;
}
[dir="ltr"] .split-deco-b {
  right: -16px;
}

.split-badge {
  position: absolute;
  bottom: 20px;
  background: rgba(5, 5, 5, 0.88);
  border: 1px solid rgba(232, 154, 34, 0.28);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
[dir="rtl"] .split-badge {
  left: 20px;
}
[dir="ltr"] .split-badge {
  right: 20px;
}
.split-badge-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-badge-ico i {
  font-size: 15px;
  color: #000;
}
.split-badge-title {
  font-weight: 700;
  color: var(--text);
  font-size: 12.5px;
}
.split-badge-sub {
  font-family: var(--font-brand);
  color: var(--orange);
  font-size: 9.5px;
  letter-spacing: 0.1em;
}

.split-info .o-line {
  margin-bottom: 16px;
}
.split-label {
  font-family: var(--font-brand);
  color: var(--orange);
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.split-h2 {
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 44px);
  color: var(--text);
  margin-bottom: 18px;
}
[dir="rtl"] .split-h2 {
  font-family: var(--font-ar);
}
[dir="ltr"] .split-h2 {
  font-family: var(--font-brand);
}
.split-p {
  color: var(--text-45);
  font-size: 15.5px;
  line-height: 1.9;
}

.split-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}
.mini-b {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  transition: border-color 0.25s;
}
.mini-b:hover {
  border-color: rgba(232, 154, 34, 0.22);
}
.mini-b-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(232, 154, 34, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-b-ico i {
  font-size: 12px;
  color: var(--orange);
}
.mini-b-name {
  font-weight: 600;
  color: var(--text);
  font-size: 12.5px;
}
.mini-b-sub {
  font-family: var(--font-brand);
  color: var(--text-25);
  font-size: 9.5px;
  margin-top: 1px;
}

/* Vision tags */
.v-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.v-tag {
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(232, 154, 34, 0.3);
  color: var(--orange);
  font-size: 12.5px;
  font-weight: 600;
  background: rgba(232, 154, 34, 0.05);
}

/* Mission card */
.mission {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 52px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 48px;
}
@media (max-width: 599px) {
  .mission {
    padding: 36px 24px;
  }
}
.mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.mission::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 40% at 50% 100%,
    rgba(232, 154, 34, 0.04) 0%,
    transparent 70%
  );
}
.mission-ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 22px;
  background: rgba(232, 154, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.mission-ico i {
  font-size: 24px;
  color: var(--orange);
}
.mission-h {
  font-weight: 900;
  font-size: clamp(22px, 3vw, 38px);
  color: var(--text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}
[dir="rtl"] .mission-h {
  font-family: var(--font-ar);
}
[dir="ltr"] .mission-h {
  font-family: var(--font-brand);
}
.m-bar {
  height: 1px;
  width: 40px;
  background: linear-gradient(to right, transparent, var(--orange));
}
.m-bar.f {
  background: linear-gradient(to left, transparent, var(--orange));
}
.mission-p {
  color: var(--text-45);
  font-size: clamp(14px, 1.5vw, 17px);
  line-height: 1.9;
  max-width: 660px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Contact Info ───────────────────────────────────────── */
.contact-body {
  background: var(--bg);
  padding-bottom: 96px;
}
.cb-grid {
  display: grid;
  gap: 40px;
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .cb-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.info-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 16px;
}
.info-block:last-child {
  margin-bottom: 0;
}
.info-block:hover {
  border-color: rgba(232, 154, 34, 0.15);
}
.ib-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}
.ib-head i {
  color: var(--orange);
  font-size: 14px;
}
.ib-head h3 {
  font-weight: 700;
  color: var(--text);
  font-size: 16px;
}

.c-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: none;
}
.c-item:last-child {
  border: none;
}
a.c-item {
  transition: opacity 0.2s;
}
a.c-item:hover {
  opacity: 0.75;
}
.ci-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(232, 154, 34, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-ico i {
  font-size: 13px;
  color: var(--orange);
}
.ci-main {
  font-weight: 500;
  color: var(--text-70);
  font-size: 13.5px;
}
.ci-sub {
  font-family: var(--font-brand);
  color: var(--text-25);
  font-size: 10.5px;
  margin-top: 2px;
}
[dir="rtl"] .c-item {
  flex-direction: row-reverse;
  text-align: right;
}

.hrs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.hrs-row:last-child {
  border: none;
}
.hrs-day {
  color: var(--text-45);
  font-size: 13.5px;
}
.hrs-time {
  font-weight: 700;
  color: var(--orange);
  font-size: 13.5px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-45);
  font-size: 13.5px;
}
.svc-item i {
  color: var(--orange);
  font-size: 10px;
  flex-shrink: 0;
}
[dir="rtl"] .svc-item {
  flex-direction: row-reverse;
}

/* ── Contact Form ───────────────────────────────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
}
@media (max-width: 599px) {
  .form-card {
    padding: 24px;
  }
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 154, 34, 0.5),
    transparent
  );
}
.fh {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 28px;
}
.fh i {
  color: var(--orange);
}
.fh h3 {
  font-weight: 700;
  color: var(--text);
  font-size: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group:last-of-type {
  margin-bottom: 0;
}

.fl-input,
.fl-area {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--r-md);
  color: var(--text);
  font-size: 14px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.fl-input {
  padding: 22px 16px 10px;
}
.fl-area {
  padding: 22px 16px 10px;
  resize: none;
  height: 132px;
}
.fl-input::placeholder,
.fl-area::placeholder {
  color: transparent;
}
.fl-input:focus,
.fl-area:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 154, 34, 0.1);
}

.fl-label {
  position: absolute;
  top: 16px;
  font-size: 13px;
  color: var(--text-25);
  transition: all 0.25s var(--ease);
  pointer-events: none;
}
[dir="rtl"] .fl-label {
  right: 16px;
}
[dir="ltr"] .fl-label {
  left: 16px;
}

.fl-input:focus ~ .fl-label,
.fl-input:not(:placeholder-shown) ~ .fl-label,
.fl-area:focus ~ .fl-label,
.fl-area:not(:placeholder-shown) ~ .fl-label {
  top: 7px;
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
}

.fi-ico {
  position: absolute;
  top: 16px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.18);
  pointer-events: none;
  transition: color 0.25s;
}
[dir="rtl"] .fi-ico {
  left: 16px;
}
[dir="ltr"] .fi-ico {
  right: 16px;
}
.form-group:focus-within .fi-ico {
  color: rgba(232, 154, 34, 0.45);
}

.form-btn {
  width: 100%;
  padding: 16px;
  border: none;
  background: var(--orange);
  color: #000;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 14.5px;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(232, 154, 34, 0.25);
  transition:
    background 0.25s,
    transform 0.25s var(--ease),
    box-shadow 0.25s;
}
.form-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.3s;
}
.form-btn:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 154, 34, 0.4);
}
.form-btn:hover::before {
  background: rgba(255, 255, 255, 0.08);
}
.form-btn:disabled {
  background: rgba(232, 154, 34, 0.45);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.form-btn i,
.form-btn span {
  position: relative;
  z-index: 1;
}

.spin {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  padding: 52px 0;
}
.form-success.on {
  display: flex;
}
.suc-ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(232, 154, 34, 0.1);
  border: 1.5px solid rgba(232, 154, 34, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop 0.5s var(--ease);
}
.suc-ico i {
  font-size: 28px;
  color: var(--orange);
}
.suc-txt {
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  max-width: 320px;
  line-height: 1.6;
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid rgba(232, 154, 34, 0.1);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(232, 154, 34, 0.018);
  filter: blur(40px);
  pointer-events: none;
}

.footer-main {
  padding: 72px 0 48px;
  position: relative;
  z-index: 1;
}
.f-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .f-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .f-grid {
    grid-template-columns: 1.6fr 1fr 1.3fr;
  }
}

.f-brand .nav-logo {
  margin-bottom: 18px;
}
.f-desc {
  color: var(--text-25);
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 22px;
}
.f-socials {
  display: flex;
  gap: 9px;
}
.f-soc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-25);
  font-size: 12px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.f-soc:hover {
  border-color: rgba(232, 154, 34, 0.4);
  color: var(--orange);
}

.f-col-title {
  font-weight: 700;
  color: var(--text);
  font-size: 13.5px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.f-col-title::before {
  content: "";
  display: block;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.f-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-25);
  font-size: 13px;
  transition: color 0.2s;
}
.f-link i {
  font-size: 8.5px;
  color: rgba(232, 154, 34, 0.3);
  transition: color 0.2s;
}
.f-link:hover {
  color: var(--orange);
}
.f-link:hover i {
  color: var(--orange);
}
[dir="rtl"] .f-link {
  flex-direction: row-reverse;
}

.f-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-ci {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.f-ci i {
  color: var(--orange);
  font-size: 11px;
  margin-top: 2px;
  flex-shrink: 0;
}
.f-ci span {
  color: var(--text-25);
  font-size: 12.5px;
  line-height: 1.5;
}
[dir="rtl"] .f-ci {
  flex-direction: row-reverse;
  text-align: right;
}

.footer-btm {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 1;
}
.f-btm-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
@media (min-width: 640px) {
  .f-btm-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
  }
}
.f-copy {
  color: var(--text-25);
  font-size: 12px;
}
.f-cert {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-brand);
  font-size: 10.5px;
  color: var(--text-25);
}
.f-cert i {
  color: rgba(232, 154, 34, 0.3);
  font-size: 10px;
}

/* ── Scroll Reveal ──────────────────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.rv.in {
  opacity: 1;
  transform: translateY(0);
}
.rv-l {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.rv-l.in {
  opacity: 1;
  transform: translateX(0);
}
.rv-r {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}
.rv-r.in {
  opacity: 1;
  transform: translateX(0);
}
.rv-s {
  opacity: 0;
  transform: scale(0.93);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.rv-s.in {
  opacity: 1;
  transform: scale(1);
}

/* Stagger - children get delay */
.stg > * {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.stg.in > *:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.04s;
}
.stg.in > *:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}
.stg.in > *:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.16s;
}
.stg.in > *:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.22s;
}
.stg.in > *:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.28s;
}
.stg.in > *:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.34s;
}
.stg.in > *:nth-child(7) {
  opacity: 1;
  transform: none;
  transition-delay: 0.4s;
}
.stg.in > *:nth-child(8) {
  opacity: 1;
  transform: none;
  transition-delay: 0.46s;
}
.stg.in > *:nth-child(n + 9) {
  opacity: 1;
  transform: none;
  transition-delay: 0.52s;
}

/* ── Keyframes ──────────────────────────────────────────── */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes track {
  to {
    width: 160px;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cue {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0);
  }
  50% {
    opacity: 0.45;
    transform: translateY(3px);
  }
}
@keyframes pop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
