/**
 * FS NINJA ACADEMY SIALKOT - CORE DESIGN SYSTEM
 * Color Theme: Black (#0B0B0B), Dark Charcoal (#181818), Ninja Red (#D71920), Gold Accent (#D7A629), White (#FFFFFF)
 * Typography: Oswald (Headings), Poppins (Body)
 */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-primary: #0B0B0B;
  --bg-charcoal: #141414;
  --bg-card: #181818;
  --bg-card-hover: #202020;
  --bg-surface: #222222;
  --bg-light: #F5F5F5;

  --ninja-red: #D71920;
  --deep-red: #99151A;
  --ninja-red-glow: rgba(215, 25, 32, 0.4);
  --ninja-red-soft: rgba(215, 25, 32, 0.12);

  --gold-accent: #D7A629;
  --gold-light: #F3C853;
  --gold-glow: rgba(215, 166, 41, 0.3);

  --color-white: #FFFFFF;
  --text-primary: #FFFFFF;
  --text-muted: #A5A5A5;
  --text-light: #D5D5D5;
  --border-color: #2A2A2A;
  --border-highlight: #3D3D3D;

  /* Typography */
  --font-heading: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows & Transitions */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-red: 0 8px 25px rgba(215, 25, 32, 0.25);
  --shadow-gold: 0 8px 25px rgba(215, 166, 41, 0.25);
  --transition-fast: all 0.25s ease-in-out;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

/* ==========================================================================
   Base Styles & Reset
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-light);
  line-height: 1.68;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--ninja-red);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: #ff3840;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background-color: var(--ninja-red);
  color: var(--color-white);
}

/* ==========================================================================
   Typography Helpers & Utilities
   ========================================================================== */
.font-heading { font-family: var(--font-heading); }
.font-body { font-family: var(--font-body); }

.text-gold { color: var(--gold-accent) !important; }
.text-red { color: var(--ninja-red) !important; }
.text-grey { color: var(--text-muted) !important; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ninja-red);
  background: var(--ninja-red-soft);
  border-left: 3px solid var(--ninja-red);
  padding: 5px 14px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 14px;
}

.section-tag.gold {
  color: var(--gold-accent);
  background: rgba(215, 166, 41, 0.12);
  border-left-color: var(--gold-accent);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.separator-martial {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 1.25rem 0 2rem;
}

.separator-martial::before,
.separator-martial::after {
  content: '';
  height: 2px;
  width: 50px;
  background: linear-gradient(90deg, transparent, var(--ninja-red));
}

.separator-martial::after {
  background: linear-gradient(90deg, var(--ninja-red), transparent);
}

.separator-martial .diamond {
  width: 10px;
  height: 10px;
  background: var(--gold-accent);
  transform: rotate(45deg);
}

/* ==========================================================================
   Buttons & CTAs
   ========================================================================== */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-ninja {
  background: var(--ninja-red);
  color: var(--color-white);
  border: 1px solid var(--ninja-red);
  box-shadow: 0 4px 15px rgba(215, 25, 32, 0.35);
}

.btn-ninja:hover {
  background: #E81D25;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(215, 25, 32, 0.55);
}

.btn-outline-ninja {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid var(--ninja-red);
}

.btn-outline-ninja:hover {
  background: var(--ninja-red);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 25, 32, 0.35);
}

.btn-gold {
  background: var(--gold-accent);
  color: #0B0B0B;
  border: 1px solid var(--gold-accent);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-light);
  color: #0B0B0B;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 166, 41, 0.45);
}

.btn-outline-light-custom {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid #444;
}

.btn-outline-light-custom:hover {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

/* ==========================================================================
   Header & Topbar
   ========================================================================== */
.top-bar {
  background-color: #080808;
  border-bottom: 1px solid #1E1E1E;
  font-size: 13px;
  color: var(--text-muted);
  padding: 8px 0;
  z-index: 1030;
}

.top-bar a {
  color: var(--text-muted);
}

.top-bar a:hover {
  color: var(--ninja-red);
}

.top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #181818;
  color: var(--text-light);
  margin-left: 6px;
  transition: var(--transition-fast);
}

.top-bar .social-icons a:hover {
  background: var(--ninja-red);
  color: var(--color-white);
}

.navbar-fs {
  background-color: rgba(11, 11, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #222;
  padding: 12px 0;
  transition: var(--transition-fast);
}

.navbar-fs.scrolled {
  padding: 8px 0;
  background-color: rgba(9, 9, 9, 0.98);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
  border-bottom-color: #2b2b2b;
}

.navbar-brand-img {
  height: 52px;
  width: auto;
  transition: var(--transition-fast);
}

.navbar-fs .nav-link {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #E2E2E2;
  padding: 8px 14px !important;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-fs .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2.5px;
  background: var(--ninja-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.navbar-fs .nav-link:hover,
.navbar-fs .nav-link.active {
  color: var(--ninja-red);
}

.navbar-fs .nav-link.active::after,
.navbar-fs .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--border-color);
  padding: 8px 12px;
  color: var(--color-white);
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--ninja-red);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background-color: #070707;
  overflow: hidden;
  padding: 90px 0 80px;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(90deg, rgba(11, 11, 11, 0.96) 0%, rgba(11, 11, 11, 0.85) 55%, rgba(11, 11, 11, 0.6) 100%),
    linear-gradient(180deg, rgba(11, 11, 11, 0.4) 0%, rgba(11, 11, 11, 0.95) 100%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.hero-bg-smoke {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(215, 25, 32, 0.15) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(215, 25, 32, 0.15);
  border: 1px solid rgba(215, 25, 32, 0.4);
  padding: 6px 18px;
  border-radius: 50px;
  color: #FFF;
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-badge-pill .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00E676;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(0, 230, 118, 0.4);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(0, 230, 118, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title .text-ninja-red {
  color: var(--ninja-red);
  text-shadow: 0 0 25px rgba(215, 25, 32, 0.4);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #CFCFCF;
  margin-bottom: 30px;
  max-width: 620px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 35px;
}

.hero-tag-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: #EEE;
}

.hero-tag-item i {
  color: var(--gold-accent);
}

/* ==========================================================================
   Quick Stats Section
   ========================================================================== */
.stats-bar {
  background: #111111;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  padding: 35px 0;
  position: relative;
  z-index: 4;
}

.stat-box {
  text-align: center;
  padding: 15px;
  position: relative;
}

.stat-box::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #252525;
}

.col-md-3:last-child .stat-box::after {
  display: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.stat-number.gold { color: var(--gold-accent); }
.stat-number.red { color: var(--ninja-red); }

.stat-label {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   Cards & Content Blocks
   ========================================================================== */
.card-ninja {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card-ninja::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--ninja-red);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.card-ninja:hover {
  background-color: var(--bg-card-hover);
  border-color: var(--ninja-red);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(215, 25, 32, 0.2);
}

.card-ninja:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background: rgba(215, 25, 32, 0.12);
  border: 1px solid rgba(215, 25, 32, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--ninja-red);
  margin-bottom: 20px;
  transition: var(--transition-fast);
}

.card-ninja:hover .card-icon {
  background: var(--ninja-red);
  color: var(--color-white);
  transform: rotate(6deg) scale(1.05);
}

.card-icon.gold {
  background: rgba(215, 166, 41, 0.12);
  border-color: rgba(215, 166, 41, 0.3);
  color: var(--gold-accent);
}

.card-ninja:hover .card-icon.gold {
  background: var(--gold-accent);
  color: #0B0B0B;
}

/* Program Card */
.program-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition-smooth);
}

.program-card:hover {
  border-color: var(--ninja-red);
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
}

.program-img-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.program-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover .program-img-wrapper img {
  transform: scale(1.08);
}

.program-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--gold-accent);
  color: var(--gold-accent);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.program-card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card-body h4 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.program-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
  margin-bottom: 20px;
}

/* Belt Journey Visual */
.belt-timeline-wrap {
  position: relative;
  padding: 20px 0;
}

.belt-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: var(--transition-fast);
  height: 100%;
}

.belt-card:hover {
  border-color: var(--ninja-red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.belt-indicator {
  height: 14px;
  width: 100%;
  border-radius: 7px;
  margin: 15px 0 20px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.4);
  position: relative;
}

.belt-knot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  background: inherit;
  border-radius: 4px;
  border: 2px solid rgba(0,0,0,0.5);
}

/* Instructors Cards */
.instructor-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: var(--transition-smooth);
}

.instructor-card:hover {
  border-color: var(--ninja-red);
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
}

.instructor-img-wrap {
  height: 290px;
  overflow: hidden;
  position: relative;
}

.instructor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: var(--transition-smooth);
}

.instructor-card:hover .instructor-img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.instructor-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--ninja-red);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 2px;
}

.instructor-body {
  padding: 22px;
}

.instructor-body h5 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.instructor-role {
  color: var(--gold-accent);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
}

.instructor-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Gallery Section & Grid */
.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #000;
  cursor: pointer;
  border: 1px solid #222;
}

.gallery-grid-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(11, 11, 11, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-grid-item:hover img {
  transform: scale(1.08);
}

.gallery-grid-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-filter-btn {
  background: transparent;
  border: 1px solid #333;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin: 0 4px 8px;
  transition: var(--transition-fast);
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: var(--ninja-red);
  border-color: var(--ninja-red);
  color: var(--color-white);
}

/* Google Reviews Highlight */
.review-highlight-card {
  background: linear-gradient(145deg, #181818 0%, #111111 100%);
  border: 1px solid #2C2C2C;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.review-highlight-card::after {
  content: '\f10e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 25px;
  bottom: 20px;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.stars-rating {
  color: var(--gold-accent);
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

/* Admissions Banner CTA */
.admissions-banner {
  background: linear-gradient(135deg, #0E0E0E 0%, #1A0506 50%, #0E0E0E 100%);
  border: 1.5px solid var(--ninja-red);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(215, 25, 32, 0.2);
  position: relative;
  overflow: hidden;
}

/* Inner Page Hero Banner */
.inner-hero {
  background-color: #0c0c0c;
  background-image: 
    linear-gradient(180deg, rgba(11, 11, 11, 0.8) 0%, rgba(11, 11, 11, 0.95) 100%),
    url('../images/dojo-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
  border-bottom: 1px solid #222;
  position: relative;
}

.inner-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb-custom {
  background: transparent;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb-custom a {
  color: var(--text-muted);
}

.breadcrumb-custom a:hover {
  color: var(--ninja-red);
}

.breadcrumb-custom span {
  color: var(--gold-accent);
}

/* Forms */
.form-ninja .form-label {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  color: #CCC;
  margin-bottom: 6px;
}

.form-ninja .form-control,
.form-ninja .form-select {
  background-color: #121212;
  border: 1px solid #2C2C2C;
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14.5px;
  transition: var(--transition-fast);
}

.form-ninja .form-control:focus,
.form-ninja .form-select:focus {
  background-color: #171717;
  border-color: var(--ninja-red);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.25);
  color: var(--color-white);
}

.form-ninja .form-control::placeholder {
  color: #666;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.floating-whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  position: relative;
}

.floating-whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulseWa 2s infinite;
}

@keyframes pulseWa {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.floating-whatsapp:hover .floating-whatsapp-btn {
  transform: scale(1.08) rotate(5deg);
  background: #20BA5A;
  color: #FFF;
}

.floating-whatsapp-tooltip {
  background: rgba(14, 14, 14, 0.95);
  border: 1px solid #333;
  color: #FFF;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  pointer-events: none;
  transition: var(--transition-fast);
}

@media (max-width: 768px) {
  .floating-whatsapp-tooltip {
    display: none;
  }
}

/* ==========================================================================
   Back To Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #181818;
  border: 1px solid #333;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 1040;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--ninja-red);
  border-color: var(--ninja-red);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-fs {
  background-color: #070707;
  border-top: 3.5px solid var(--ninja-red);
  padding: 70px 0 25px;
  color: var(--text-muted);
  font-size: 14.5px;
  position: relative;
}

.footer-fs h5 {
  font-size: 1.15rem;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-fs h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--ninja-red);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-links a i {
  font-size: 11px;
  color: var(--ninja-red);
}

.footer-links a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: var(--ninja-red);
  font-size: 16px;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid #1A1A1A;
  margin-top: 50px;
  padding-top: 25px;
  font-size: 13.5px;
}

/* Lightbox Modal */
.lightbox-modal .modal-content {
  background-color: transparent;
  border: none;
}

.lightbox-modal .modal-body {
  padding: 0;
  position: relative;
}

.lightbox-modal img {
  max-height: 85vh;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  border: 2px solid #222;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 28px;
  cursor: pointer;
}
