/* ═══════════════════════════════════════════
   ALFASIS DEFENSE — style.css
   Dark military / tactical aesthetic
═══════════════════════════════════════════ */

:root {
  --bg:         #080b12;
  --bg-2:       #0f1420;
  --bg-3:       #141926;
  --card:       #111724;
  --card-hover: #161e2e;
  --border:     rgba(255,255,255,0.07);
  --border-act: rgba(184,96,0,0.6);
  --text:       #d4d9e8;
  --text-dim:   #7a8299;
  --text-muted: #4a5268;
  --red:        #c8102e;
  --red-dim:    rgba(200,16,46,0.15);
  --gold:       #b87800;
  --gold-light: #d4960a;
  --gold-dim:   rgba(184,120,0,0.12);
  --white:      #f0f2f8;
  --nav-h:      72px;
  --radius:     4px;
  --radius-lg:  8px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.hidden { display: none !important; }
.mono { font-family: 'Share Tech Mono', monospace; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; letter-spacing: 0.02em; }
.section-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-dim); max-width: 540px; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-sub { margin: 0 auto; }
.accent-red { color: var(--red); font-style: normal; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: #e01030; transform: translateY(-1px); }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-1px); }

.btn-details {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-light);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.btn-details:hover { border-color: var(--gold-light); }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(8,11,18,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
#navbar.scrolled { background: rgba(8,11,18,0.98); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 40px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: 0.08em; color: var(--white); }
.logo-accent { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 32px; margin-left: auto; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { color: var(--white) !important; background: var(--red); padding: 8px 18px; border-radius: var(--radius); }
.nav-cta:hover { background: #e01030; }

.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-switcher { display: flex; gap: 2px; background: var(--bg-2); border: 1px solid var(--border); border-radius: 20px; padding: 3px; }
.lang-btn { font-family: 'Share Tech Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--text-dim); padding: 4px 10px; border-radius: 16px; transition: all 0.2s; }
.lang-btn.active, .lang-btn:hover { background: var(--gold); color: #000; font-weight: 700; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 99;
  background: var(--bg); padding: 40px 24px;
  flex-direction: column; gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-link { display: block; padding: 18px 0; font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white); }
.mobile-lang { display: flex; gap: 8px; margin-top: 32px; }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 60px) 24px 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
/* Video Carousel */
.video-carousel {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}
.hero-video.active {
  opacity: 1;
  z-index: 1;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,11,18,0.25) 0%,
    rgba(8,11,18,0.20) 50%,
    rgba(8,11,18,0.70) 100%
  );
  z-index: 2;
}
.hero-bg .hero-grid-lines,
.hero-bg .hero-glow-1,
.hero-bg .hero-glow-2 { z-index: 3; }
.hero-content { z-index: 4; }
.hero-stats   { z-index: 4; }

/* Carousel Controls */
.carousel-controls {
  position: relative; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  gap: 20px;
  padding: 20px 0 36px;
  max-width: 1200px; margin: 0 auto;
}
.carousel-dots { display: flex; gap: 10px; align-items: center; }
.carousel-dot {
  width: 28px; height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--red);
  width: 44px;
}
.carousel-arrow {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  line-height: 1;
}
.carousel-arrow:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(200,16,46,0.15);
}

/* Progress bar on active dot */
.carousel-dot.active.animating {
  position: relative;
  overflow: hidden;
}
.carousel-dot.active.animating::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 0%;
  background: rgba(255,255,255,0.5);
  animation: dotProgress var(--dot-duration, 8s) linear forwards;
}
@keyframes dotProgress {
  from { width: 0%; }
  to   { width: 100%; }
}


  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,120,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,120,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow-1 {
  position: absolute; top: 10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(200,16,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: 10%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(184,120,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-tag { margin-bottom: 24px; }
.hero-tag .mono { font-size: 11px; letter-spacing: 0.22em; color: #fff; text-transform: uppercase; text-shadow: 0 1px 8px rgba(0,0,0,0.6); }
.hero-title {
  font-size: clamp(64px, 10vw, 130px);
  font-weight: 800;
  color: #ffffff;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.92); margin-bottom: 40px; letter-spacing: 0.04em; text-shadow: 0 1px 10px rgba(0,0,0,0.5); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats {
  position: relative; z-index: 4;
  display: flex; align-items: center; gap: 0;
  max-width: 1200px; margin: 80px auto 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 32px 24px;
  background: rgba(8,11,18,0.45);
  backdrop-filter: blur(8px);
}
.stat { flex: 1; text-align: center; padding: 0 24px; }
.stat-num { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 42px; font-weight: 800; color: #fff; line-height: 1; text-shadow: 0 1px 10px rgba(0,0,0,0.4); }
.stat-label { display: block; font-size: 12px; color: rgba(255,255,255,0.75); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 6px; }
.stat-div { width: 1px; background: rgba(255,255,255,0.12); align-self: stretch; }

/* ── ABOUT ── */
#about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-text p { color: var(--text-dim); margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.about-badges { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.badge { font-family: 'Share Tech Mono', monospace; font-size: 11px; letter-spacing: 0.1em; color: var(--gold-light); border: 1px solid var(--border-act); padding: 5px 12px; border-radius: 20px; }

.about-domains { display: flex; flex-direction: column; gap: 16px; }
.domain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; align-items: flex-start; gap: 20px;
  transition: border-color 0.2s, background 0.2s;
}
.domain-card:hover { border-color: var(--border-act); background: var(--card-hover); }
.domain-num { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; color: var(--gold); min-width: 40px; line-height: 1; padding-top: 2px; }
.domain-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.domain-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ── CLIENTS SLIDER ── */
#clients {
  padding: 56px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.clients-header {
  text-align: center;
  margin-bottom: 32px;
}
.clients-track-wrap {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  mask: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  flex-shrink: 0;
  height: 88px;
}
.client-logo img {
  height: 52px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  background: #fff;
  border-radius: 6px;
  padding: 8px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  transition: transform 0.25s, box-shadow 0.25s;
}
.client-logo:hover img {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ── PRODUCTS ── */
#products { padding: 100px 0; background: var(--bg-2); }

.cat-tabs { display: flex; gap: 4px; margin-bottom: 48px; background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 4px; width: fit-content; }
.cat-tab {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-dim);
  padding: 10px 20px;
  border-radius: 6px;
  transition: all 0.2s;
}
.cat-tab:hover { color: var(--white); }
.cat-tab.active { background: var(--red); color: #fff; }
.cat-count { font-family: 'Share Tech Mono', monospace; font-size: 10px; background: rgba(255,255,255,0.12); padding: 2px 6px; border-radius: 10px; }
.cat-tab.active .cat-count { background: rgba(255,255,255,0.2); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: rgba(200,16,46,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.product-img-wrap { position: relative; height: 220px; overflow: hidden; background: var(--bg-3); }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-cat-badge {
  position: absolute; top: 12px; left: 12px;
  font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 4px 10px; border-radius: 2px;
}
.product-body { padding: 24px; }
.product-body h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.product-body p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }
.product-specs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.product-specs li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-dim); }
.spec-dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* Coming soon block */
.coming-soon-block {
  grid-column: 1 / -1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: var(--card);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  gap: 16px;
}
.cs-icon { font-size: 52px; line-height: 1; }
.coming-soon-block h3 { font-size: 28px; font-weight: 700; color: var(--white); }
.coming-soon-block p { font-size: 16px; color: var(--text-dim); max-width: 400px; }

/* ── PRODUCT MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 700px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: modalIn 0.25s ease;
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 1;
  font-size: 18px; color: var(--text-dim);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-3); border-radius: 50%;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--white); background: var(--card-hover); }
.modal-content { padding: 32px; }
.modal-content img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); margin-bottom: 24px; }
.modal-content h2 { font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.modal-content .modal-cat { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--red); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.modal-content p { font-size: 15px; color: var(--text-dim); line-height: 1.75; margin-bottom: 24px; }
.modal-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.modal-spec-item { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; }
.modal-spec-item .spec-label { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: 0.12em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.modal-spec-item .spec-val { font-size: 14px; font-weight: 600; color: var(--white); }
.modal-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── NEWS ── */
#news { padding: 100px 0; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.news-card:hover { border-color: var(--border-act); transform: translateY(-2px); }
.featured-news { grid-column: span 1; border-color: rgba(200,16,46,0.2); }
.news-cat { font-family: 'Share Tech Mono', monospace; font-size: 10px; letter-spacing: 0.12em; color: var(--red); text-transform: uppercase; margin-bottom: 12px; }
.news-card h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.3; }
.news-card p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin-bottom: 16px; }
.news-meta { font-size: 12px; color: var(--text-muted); font-family: 'Share Tech Mono', monospace; }

/* ── CONTACT ── */
#contact { padding: 100px 0; background: var(--bg-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-info p { color: var(--text-dim); font-size: 16px; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--text-dim); }
.c-icon { font-size: 16px; line-height: 1.65; flex-shrink: 0; }
.contact-item a { color: var(--text); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold-light); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 13px 24px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
}
.whatsapp-btn:hover { background: #1ebe58; transform: translateY(-1px); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--bg-3); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 13px; color: var(--gold-light); text-align: center; min-height: 20px; }

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-brand .footer-logo { height: 36px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 10px; }
.footer-reg { font-family: 'Share Tech Mono', monospace; font-size: 11px; color: var(--text-muted); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li { font-size: 14px; color: var(--text-dim); line-height: 1.55; }
.footer-col a { color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 56px; height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ── ALFAUAV HERO ── */
.alfauav-hero {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.alfauav-img-col {
  position: relative;
  min-height: 560px;
  background: var(--bg-3);
}
.alfauav-img-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.alfauav-badge-wrap {
  position: absolute; top: 20px; left: 20px; z-index: 2;
}
.alfauav-badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--red); color: #fff;
  padding: 5px 12px; border-radius: 2px;
}
.alfauav-content {
  padding: 48px;
  display: flex; flex-direction: column; gap: 24px;
  justify-content: center;
}
.alfauav-title {
  font-size: 64px; font-weight: 800;
  color: var(--white); line-height: 1;
  letter-spacing: -0.02em;
}
.alfauav-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--gold-light); text-transform: uppercase;
  margin-top: -16px;
}
.alfauav-desc {
  font-size: 15px; color: var(--text-dim); line-height: 1.75;
}
.alfauav-specs-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.alfauav-spec {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
}
.alfauav-spec-val {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.alfauav-spec-label {
  display: block;
  font-size: 11px; color: var(--text-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.alfauav-features { display: flex; flex-direction: column; gap: 16px; }
.alfauav-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.alfauav-feature:hover { border-color: var(--border-act); }
.af-icon { font-size: 22px; line-height: 1; flex-shrink: 0; padding-top: 2px; }
.alfauav-feature h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.alfauav-feature p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.alfauav-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 4px; }

@media (max-width: 900px) {
  .alfauav-hero { grid-template-columns: 1fr; }
  .alfauav-img-col { min-height: 280px; }
  .alfauav-content { padding: 32px 24px; }
  .alfauav-specs-grid { grid-template-columns: repeat(2, 1fr); }
  .alfauav-title { font-size: 48px; }
}

/* ── RTL (Arabic) ── */
[dir="rtl"] .nav-links { margin-left: 0; margin-right: auto; }
[dir="rtl"] .hero-title { text-align: right; }
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-tag { text-align: right; }
[dir="rtl"] .hero-actions { justify-content: flex-end; }
[dir="rtl"] .product-cat-badge { left: auto; right: 12px; }
[dir="rtl"] .whatsapp-float { right: auto; left: 28px; }
[dir="rtl"] .modal-close { right: auto; left: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(52px, 14vw, 90px); }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-div { display: none; }
  .stat { min-width: calc(50% - 8px); flex: none; }
  .news-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .cat-tabs { width: 100%; }
  .cat-tab { flex: 1; justify-content: center; font-size: 12px; padding: 10px 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .modal-specs { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; }
  .about-badges { flex-wrap: wrap; }
}
