/* ==========================================================================
   AIFRAN SPORTS - B2B OEM Tactical & Combat Gear Manufacturer
   Standalone Pure CSS - Ready for Shared Hosting (Apache/cPanel)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-main: #000000;
  --bg-card: #121212;
  --bg-card-subtle: #0A0A0A;
  --bg-surface: #181818;
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.2);
  --accent-green: #166534;
  --accent-green-hover: #14532D;
  --accent-green-light: #15803D;
  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-main);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: #E2E8F0;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #000000;
}
::-webkit-scrollbar-thumb {
  background: #262626;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #166534;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.font-mono-spec {
  font-family: var(--font-mono);
}

/* Container */
.site-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .site-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Subtle Glow Effects */
.bg-glow-radial {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 101, 52, 0.15) 0%, rgba(22, 101, 52, 0.04) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #166534;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 25px -5px rgba(22, 101, 52, 0.45);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-primary:hover {
  background: #14532D;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(22, 101, 52, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(24, 24, 24, 0.85);
  backdrop-filter: blur(8px);
  color: #F8FAFC;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: #166534;
  border-color: #166534;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #000000;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1.25rem;
  border-radius: 10px;
  border: 1px solid #262626;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary-light:hover {
  background: #166534;
  border-color: #166534;
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 101, 52, 0.35);
}

/* Badges & Chips */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #CBD5E1;
}

.badge-pill.accent-green {
  border-color: rgba(22, 101, 52, 0.5);
  color: #4ADE80;
  background: rgba(22, 101, 52, 0.15);
}

/* Card Elements */
.glass-card {
  background: #121212;
  border: 1px solid #262626;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: #166534;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.8);
}

/* Modals */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #121212;
  border: 1px solid #262626;
  border-radius: 24px;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.95);
  transform: scale(0.95) translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-backdrop.active .modal-box {
  transform: scale(1) translateY(0);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #166534;
  color: #FFFFFF;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition);
}

.whatsapp-float:hover {
  background: #14532D;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 15px 35px rgba(22, 101, 52, 0.5);
}

/* Mobile Nav Drawer */
.mobile-nav-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
}

.mobile-nav-menu.open {
  max-height: 480px;
}

/* Interactive Tabs */
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  color: #475569;
  cursor: pointer;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.filter-btn:hover {
  color: #000000;
  border-color: #CBD5E1;
  background: #F8FAFC;
}

.filter-btn.active {
  background: #166534;
  border-color: #166534;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(22, 101, 52, 0.35);
}

/* Light Card Container */
.light-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.light-card:hover {
  border-color: #166534;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.pulse-dot {
  animation: pulseDot 2s infinite ease-in-out;
}
