/* =========================================
           ROOT VARIABLES (YAHAN CHANGES NA KAREIN)
           ========================================= */
:root {
  /* Colors Extracted from Logo & Dark Theme Setup */
  --fs-bg-dark: #050505;
  /* True Dark Black */
  --fs-bg-glass: rgba(5, 5, 5, 0.85);
  /* Black Glass */
  --fs-falcon-blue: #042d4b;
  --fs-falcon-blue-light: #0a4a7a;
  --fs-steel-silver: #c0c5ce;
  --fs-text-white: #ffffff;
  --fs-text-muted: #94a3b8;
  --fs-accent-glow: #00d4ff;
  /* Sexy hover effects ke liye */

  /* Fonts */
  --fs-font-heading: "Montserrat", sans-serif;
  --fs-font-body: "Inter", sans-serif;

  /* Transitions */
  --fs-transition-fast: 0.3s ease;
  --fs-transition-smooth: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================
           BASE STYLES (MAIN SETUP)
           ========================================= */
html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  background-color: var(--fs-bg-dark);
  color: var(--fs-text-white);
  font-family: var(--fs-font-body);
  overflow-x: hidden;
  min-height: 200vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fs-font-heading);
  font-weight: 700;
}

/* Custom Scrollbar Premium Feel Ke Liye */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--fs-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--fs-falcon-blue-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--fs-accent-glow);
}

/* Unique class name */
.falcon-agent-sticker-box {
  position: fixed;
  bottom: 0px;
  right: 20px;
  z-index: 9999;
}

.falcon-agent-sticker-box img {
  width: 210px;
  /* adjust size */
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease;
}

@media (max-width: 756px) {
  .falcon-agent-sticker-box img {
    width: 110px;
    bottom: -20px;
  }
}

/* Hover effect */
.falcon-agent-sticker-box img:hover {
  transform: scale(1.1);
}

/* =========================================
           SECTION 1: NAVBAR (HEADER) STYLES
           ========================================= */
#fs-main-header {
  background: transparent;
  transition: var(--fs-transition-smooth);
  /* padding: 20px 0; */
  border-bottom: 1px solid transparent;
}

/* Scrolled state Navbar ke liye */
#fs-main-header.fs-scrolled {
  background: var(--fs-bg-glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

/* LOGO WRAPPER WITH ROUNDED INDUSTRIAL WHITE SHAPE */
.fs-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0px 45px 5px 0px;
  z-index: 1;
}

/* Premium Rounded & Slanted White Design Element */
.fs-logo-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  bottom: -20px;
  left: -50vw;
  right: 0;
  background: linear-gradient(to right, #ffffff, #f8f9fa);
  transform: skewX(-18deg);
  transform-origin: bottom;
  border-radius: 0 35px 35px 0;
  z-index: -1;
  box-shadow: 10px 0 25px rgba(0, 0, 0, 0.7);
  transition: var(--fs-transition-smooth);
}

/* Scroll hone par white shape ko adjust karein */
#fs-main-header.fs-scrolled .fs-logo-wrapper::before {
  top: -10px;
  bottom: -10px;
  box-shadow: 8px 0 15px rgba(0, 0, 0, 0.8);
}

.fs-logo-wrapper:hover {
  transform: translateY(-2px);
}

/* ENLARGED LOGO IMAGE */
.fs-logo-img {
  height: 75px;
  width: auto;
  transition: var(--fs-transition-smooth);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.fs-logo-wrapper:hover .fs-logo-img {
  transform: scale(1.03);
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.fs-nav-item {
  margin: 0 18px;
}

.fs-nav-link {
  font-family: var(--fs-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fs-text-muted) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0 !important;
  transition: var(--fs-transition-fast);
}

/* Extreme Hover Effect Links ke liye */
.fs-nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--fs-accent-glow);
  transition: var(--fs-transition-smooth);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--fs-accent-glow);
}

.fs-nav-link:hover,
.fs-nav-link.active {
  color: var(--fs-text-white) !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.fs-nav-link:hover::after,
.fs-nav-link.active::after {
  width: 100%;
}

/* DROPDOWN STYLES */
.fs-dropdown-menu {
  background: var(--fs-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  margin-top: 15px;
  min-width: 220px;
  transition: all 0.3s ease;
}

.fs-dropdown-item {
  color: var(--fs-text-muted);
  font-family: var(--fs-font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  transition: var(--fs-transition-fast);
  background: transparent;
}

.fs-dropdown-item:hover,
.fs-dropdown-item:focus {
  background: rgba(0, 212, 255, 0.1);
  color: var(--fs-text-white);
  padding-left: 28px;
  text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

/* Desktop Hover Dropdown ke liye */
@media (min-width: 992px) {
  .fs-dropdown-wrapper .fs-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
  }

  .fs-dropdown-wrapper:hover .fs-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    margin-top: 0;
  }
}

/* Premium Glow Button */
.fs-btn-quote {
  background: linear-gradient(
    45deg,
    var(--fs-falcon-blue),
    var(--fs-falcon-blue-light)
  );
  color: var(--fs-text-white);
  font-family: var(--fs-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: var(--fs-transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.fs-btn-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    var(--fs-accent-glow),
    var(--fs-falcon-blue)
  );
  z-index: -1;
  opacity: 0;
  transition: var(--fs-transition-smooth);
}

.fs-btn-quote:hover {
  color: var(--fs-bg-dark);
  border-color: var(--fs-accent-glow);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
  transform: translateY(-2px);
}

.fs-btn-quote:hover::before {
  opacity: 1;
}

/* Mobile Navbar Toggler */
.navbar-toggler {
  border: none;
  color: var(--fs-text-white);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile Navbar Spacing */
@media (max-width: 991px) {
  #fsNavbarContent {
    margin-top: 20px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(10, 15, 25, 0.98);
    backdrop-filter: blur(15px);
  }

  .fs-nav-item {
    margin: 12px 0;
  }

  .fs-btn-quote {
    margin-top: 15px;
    width: 100%;
    text-align: center;
  }

  /* Mobile Dropdown */
  .fs-dropdown-menu {
    display: none;
    position: static !important;
    margin-top: 12px !important;
    margin-left: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--fs-accent-glow);
    box-shadow: none;
  }

  .fs-dropdown-menu.show {
    display: block;
    animation: fsSlideDown 0.3s ease;
  }

  @keyframes fsSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* =========================================
           SECTION 2: HERO SECTION WITH VIDEO BG
           ========================================= */
#fs-hero-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.fs-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: -2;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
}

.fs-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.6) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: -1;
}

.fs-hero-content {
  position: relative;
  z-index: 2;
}

.fs-hero-subtitle {
  color: var(--fs-accent-glow);
  font-size: 1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
}

.fs-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--fs-text-white);
  text-shadow: 0px 5px 15px rgba(0, 0, 0, 0.8);
}

.fs-hero-title .fs-text-glow {
  background: linear-gradient(
    to right,
    #ffffff,
    var(--fs-accent-glow),
    #ffffff
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 3s linear infinite;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

.fs-hero-desc {
  font-size: 1.1rem;
  color: var(--fs-steel-silver);
  max-width: 700px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.8);
}

.fs-hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.fs-btn-primary {
  background: linear-gradient(
    45deg,
    var(--fs-falcon-blue),
    var(--fs-accent-glow)
  );
  color: var(--fs-text-white);
  padding: 15px 40px;
  border-radius: 50px;
  font-family: var(--fs-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: var(--fs-transition-smooth);
  border: none;
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}

.fs-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.5);
  color: var(--fs-text-white);
}

.fs-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  color: var(--fs-text-white);
  padding: 15px 40px;
  border-radius: 50px;
  font-family: var(--fs-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-decoration: none;
  transition: var(--fs-transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.fs-btn-secondary:hover {
  background: var(--fs-text-white);
  color: var(--fs-bg-dark);
  border-color: var(--fs-text-white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Mouse Scroll Animation */
.fs-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
  transition: var(--fs-transition-fast);
  z-index: 2;
}

.fs-scroll-indicator:hover {
  opacity: 1;
  cursor: pointer;
}

.fs-scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--fs-steel-silver);
}

.fs-mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--fs-steel-silver);
  border-radius: 20px;
  position: relative;
}

.fs-wheel {
  width: 4px;
  height: 8px;
  background: var(--fs-accent-glow);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: fs-scrollWheel 1.5s infinite ease-in-out;
}

@keyframes fs-scrollWheel {
  0% {
    top: 6px;
    opacity: 1;
  }

  100% {
    top: 20px;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .fs-hero-title {
    font-size: 2.2rem;
  }

  .fs-hero-subtitle {
    font-size: 0.85rem;
  }

  .fs-hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .fs-btn-primary,
  .fs-btn-secondary {
    width: 80%;
    justify-content: center;
  }

  .fs-nav-item {
    margin: 10px 0;
  }
}

/* =========================================
           SECTION 3: ABOUT / OVERVIEW STYLES
           ========================================= */
#fs-about-section {
  background-color: var(--fs-bg-dark);
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  z-index: 1;
}

.fs-about-glow-bg {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.08) 0%,
    rgba(5, 5, 5, 0) 70%
  );
  border-radius: 50%;
  z-index: -1;
  filter: blur(50px);
}

.fs-section-subtitle {
  color: var(--fs-accent-glow);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.fs-section-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -60px;
  width: 40px;
  height: 2px;
  background: var(--fs-accent-glow);
  transform: translateY(-50%);
  box-shadow: 0 0 8px var(--fs-accent-glow);
}

.fs-section-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fs-text-white);
  line-height: 1.2;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.fs-section-title span {
  color: var(--fs-steel-silver);
  font-weight: 300;
  font-style: italic;
}

.fs-about-text {
  color: var(--fs-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.fs-about-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.fs-about-feature-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: var(--fs-text-white);
  font-weight: 600;
  font-size: 1.05rem;
}

.fs-about-feature-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--fs-accent-glow);
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Floating Premium Stat Boxes */
.fs-stats-row-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  margin-top: 60px;
}

.fs-stat-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: var(--fs-transition-smooth);
  position: relative;
  overflow: hidden;
}

.fs-stat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--fs-accent-glow),
    transparent
  );
  opacity: 0.3;
  transition: var(--fs-transition-smooth);
}

.fs-stat-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.fs-stat-box:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--fs-accent-glow);
}

.fs-stat-number {
  font-family: var(--fs-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--fs-text-white);
  margin-bottom: 5px;
  line-height: 1;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.fs-stat-number span {
  color: var(--fs-accent-glow);
  font-size: 2rem;
}

.fs-stat-label {
  font-size: 0.9rem;
  color: var(--fs-steel-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.fs-about-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.fs-about-img-wrapper:hover .fs-about-img {
  transform: scale(1.05);
}

.fs-about-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.9), transparent);
  pointer-events: none;
}

@media (max-width: 991px) {
  .fs-section-title {
    font-size: 2.2rem;
  }

  .fs-stats-row-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }

  .fs-about-img-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 576px) {
  .fs-stats-row-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
           SECTION 4: PRODUCTS SLIDER STYLES
           ========================================= */
#fs-products-section {
  background-color: #080c13;
  padding: 100px 0;
  position: relative;
}

.fs-product-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.fs-slider-controls {
  display: flex;
  gap: 15px;
}

.fs-slider-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--fs-text-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--fs-transition-fast);
}

.fs-slider-btn:hover {
  border-color: var(--fs-accent-glow);
  color: var(--fs-accent-glow);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
  transform: scale(1.05);
}

.fs-product-track {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0 40px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.fs-product-track::-webkit-scrollbar {
  display: none;
}

.fs-product-card {
  flex: 0 0 calc(33.333% - 20px);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--fs-transition-smooth);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.fs-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    45deg,
    var(--fs-falcon-blue),
    var(--fs-accent-glow),
    var(--fs-falcon-blue)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--fs-transition-smooth);
  z-index: 10;
  pointer-events: none;
}

.fs-product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.8),
    0 0 25px rgba(0, 212, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.fs-product-card:hover::before {
  opacity: 1;
}

.fs-product-img-box {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.fs-badge-top-seller {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #111;
  color: var(--fs-text-white);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 15px;
  border: 1px solid var(--fs-accent-glow);
  z-index: 5;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.fs-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.6s ease;
  filter: grayscale(60%) brightness(0.8);
}

.fs-product-card:hover .fs-product-img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}

.fs-product-content {
  padding: 30px;
  position: relative;
  z-index: 2;
}

.fs-product-title {
  color: var(--fs-text-white);
  font-family: var(--fs-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  transition: var(--fs-transition-fast);
}

.fs-product-card:hover .fs-product-title {
  color: var(--fs-accent-glow);
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.fs-product-desc {
  color: var(--fs-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.fs-product-link {
  color: var(--fs-steel-silver);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--fs-transition-fast);
}

.fs-product-link i {
  transition: transform 0.3s ease;
}

.fs-product-card:hover .fs-product-link {
  color: var(--fs-accent-glow);
}

.fs-product-card:hover .fs-product-link i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .fs-product-card {
    flex: 0 0 calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .fs-product-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .fs-product-card {
    flex: 0 0 100%;
  }
}

/* =========================================
           SECTION 5: GLOBAL IMPACT & MILESTONES
           ========================================= */
#fs-impact-section {
  position: relative;
  padding: 100px 0;
  background-image: url("../images/backgrounds/global-bg2.jpeg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.fs-impact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 5, 5, 0.501);
  z-index: -1;
}

.fs-impact-header {
  text-align: center;
  margin-bottom: 60px;
}

.fs-impact-header .fs-section-title {
  color: var(--fs-text-white);
  font-size: 2.5rem;
  letter-spacing: 2px;
}

.fs-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fs-impact-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.fs-impact-card:hover,
.fs-impact-card.active {
  background: var(--fs-falcon-blue);
  border-color: var(--fs-falcon-blue-light);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.fs-impact-card-title {
  font-family: var(--fs-font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fs-text-white);
  margin-bottom: 30px;
  letter-spacing: 1px;
  transition: var(--fs-transition-fast);
}

.fs-impact-circle {
  width: 150px;
  height: 150px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
  transition: all 0.4s ease;
}

.fs-impact-circle span {
  font-family: var(--fs-font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fs-text-white);
  transition: var(--fs-transition-fast);
}

.fs-impact-card:hover .fs-impact-circle,
.fs-impact-card.active .fs-impact-circle {
  border-color: var(--fs-text-white);
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.fs-impact-desc {
  color: var(--fs-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  transition: var(--fs-transition-fast);
}

.fs-impact-card:hover .fs-impact-desc,
.fs-impact-card.active .fs-impact-desc {
  color: rgba(255, 255, 255, 0.9);
}

.fs-impact-footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fs-impact-footer h3 {
  font-family: var(--fs-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fs-text-white);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.fs-impact-footer p {
  color: var(--fs-text-muted);
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 1199px) {
  .fs-impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fs-impact-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
           SECTION 6: ADVANCED QUALITY BENTO GRID
           ========================================= */
#fs-quality-section {
  background-color: var(--fs-bg-dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.fs-quality-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    var(--fs-bg-dark) 80%
  );
  pointer-events: none;
}

.fs-quality-sticky-panel {
  position: sticky;
  top: 150px;
}

.fs-quality-sticky-panel .fs-section-title {
  margin-bottom: 25px;
}

.fs-iso-badge-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 20px 30px;
  border-radius: 20px;
  margin-top: 40px;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.5),
    inset 0 0 20px rgba(0, 212, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.fs-iso-badge-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: skewX(-20deg);
  animation: isoShine 4s infinite;
}

@keyframes isoShine {
  0% {
    left: -100%;
  }

  20%,
  100% {
    left: 200%;
  }
}

.fs-iso-icon-container {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--fs-falcon-blue), #000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--fs-accent-glow);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
  flex-shrink: 0;
}

.fs-iso-icon-container i {
  font-size: 1.8rem;
  color: var(--fs-text-white);
}

.fs-iso-text h4 {
  color: var(--fs-text-white);
  font-family: var(--fs-font-heading);
  margin: 0 0 5px 0;
  font-weight: 800;
  letter-spacing: 1px;
}

.fs-iso-text p {
  margin: 0;
  color: var(--fs-accent-glow);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.fs-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.fs-bento-card {
  background: #0a0e14;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.fs-bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top right,
    rgba(0, 212, 255, 0.15),
    transparent 70%
  );
  opacity: 0;
  transition: var(--fs-transition-smooth);
  z-index: -1;
}

.fs-bento-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--fs-accent-glow);
  transition: var(--fs-transition-smooth);
  box-shadow: 0 0 15px var(--fs-accent-glow);
}

.fs-bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.8),
    inset 0 0 40px rgba(0, 212, 255, 0.05);
}

.fs-bento-card:hover::before {
  opacity: 1;
}

.fs-bento-card:hover::after {
  width: 100%;
}

.fs-bento-icon {
  font-size: 2.5rem;
  color: var(--fs-steel-silver);
  margin-bottom: 25px;
  transition: var(--fs-transition-smooth);
  display: inline-block;
}

.fs-bento-card:hover .fs-bento-icon {
  color: var(--fs-accent-glow);
  transform: translateY(-10px) scale(1.1);
  filter: drop-shadow(0 10px 10px rgba(0, 212, 255, 0.4));
}

.fs-bento-title {
  color: var(--fs-text-white);
  font-family: var(--fs-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.fs-bento-desc {
  color: var(--fs-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.fs-bento-grid .fs-bento-card:nth-child(even) {
  margin-top: 40px;
}

@media (max-width: 991px) {
  .fs-quality-sticky-panel {
    position: relative;
    top: 0;
    margin-bottom: 60px;
  }

  .fs-bento-grid .fs-bento-card:nth-child(even) {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .fs-bento-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
           SECTION 7: CLIENT TESTIMONIALS & PARTNERSHIPS
           ========================================= */
#fs-testimonial-section {
  position: relative;
  padding: 120px 0;
  background-image: url("../images/backgrounds/testi-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.fs-testi-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.85);
  z-index: -1;
}

.fs-testi-cert-box {
  transition: var(--fs-transition-smooth);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fs-testi-cert-box:hover {
  transform: translateY(-5px);
}

.fs-testi-cert-img {
  width: 100%;
  max-height: 450px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
}

.fs-testi-content-wrap {
  padding-left: 40px;
}

.fs-testi-slider-viewport {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.fs-testi-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 100%;
}

.fs-testi-slide {
  flex: 0 0 100%;
  padding-right: 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.6s ease;
}

.fs-testi-slide.active {
  opacity: 1;
  transform: scale(1);
}

.fs-testi-quote {
  font-family: var(--fs-font-body);
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--fs-steel-silver);
  font-style: italic;
  margin-bottom: 30px;
  position: relative;
}

.fs-testi-quote::before {
  content: "\201C";
  font-family: var(--fs-font-heading);
  font-size: 4rem;
  color: rgba(0, 212, 255, 0.2);
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: -1;
}

.fs-testi-author {
  font-family: var(--fs-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--fs-text-white);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fs-testi-designation {
  color: var(--fs-accent-glow);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.fs-testi-controls-wrapper {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .fs-testi-content-wrap {
    padding-left: 0;
    margin-top: 50px;
  }

  .fs-testi-quote {
    font-size: 1.2rem;
  }
}

/* =========================================
           SECTION 8: SUPPORT & RESOURCES (NEW)
           ========================================= */
#fs-support-section {
  position: relative;
  padding: 120px 0;
  background-image: url("assets/images/backgrounds/support-bg.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.fs-support-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0.477),
    rgba(5, 5, 5, 0.431)
  );
  z-index: -1;
}

.fs-support-header {
  text-align: center;
  margin-bottom: 60px;
}

.fs-support-header .fs-section-subtitle {
  background: rgba(0, 212, 255, 0.1);
  padding: 5px 15px;
  border-radius: 50px;
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--fs-accent-glow);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: inline-block;
}

.fs-support-header .fs-section-subtitle::after {
  display: none;
}

.fs-support-header .fs-section-title {
  color: var(--fs-text-white);
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-transform: none;
  /* Matching reference style */
}

.fs-support-header p {
  color: var(--fs-text-muted);
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.fs-support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.fs-support-card {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.03) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  z-index: 1;
}

/* Hover Glowing Effect from bottom */
.fs-support-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(0, 212, 255, 0.1), transparent);
  transition: height 0.4s ease;
  z-index: -1;
}

.fs-support-card:hover::after {
  height: 100%;
}

.fs-support-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.fs-support-tag {
  color: var(--fs-accent-glow);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
}

.fs-support-title {
  color: var(--fs-text-white);
  font-family: var(--fs-font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.3;
}

.fs-support-desc {
  color: var(--fs-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.fs-support-link {
  margin-top: auto;
  /* Pushes link to the bottom */
  color: var(--fs-text-white);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  transition: all 0.3s;
}

.fs-support-link i {
  color: var(--fs-steel-silver);
  transition:
    transform 0.3s,
    color 0.3s;
}

.fs-support-card:hover .fs-support-link {
  color: var(--fs-accent-glow);
  border-color: rgba(0, 212, 255, 0.3);
}

.fs-support-card:hover .fs-support-link i {
  color: var(--fs-accent-glow);
  transform: translateX(5px);
}

@media (max-width: 1199px) {
  .fs-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .fs-support-grid {
    grid-template-columns: 1fr;
  }

  .fs-support-header .fs-section-title {
    font-size: 2.2rem;
  }
}

/* =========================================
           SECTION 9: GALLERY (REFERENCE MASONRY LAYOUT)
           ========================================= */
#fs-gallery-section {
  background-color: #ffffff;
  /* Bright contrast section */
  padding: 100px 0;
  position: relative;
}

/* Headers styling customized to match reference */
.fs-gallery-header {
  margin-bottom: 50px;
}

.fs-gallery-header .fs-ref-subtitle {
  color: #333;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* Line before the subtitle to match exact reference */
.fs-gallery-header .fs-ref-subtitle::before {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #e74c3c;
  /* Reference uses a red-ish accent line here */
}

.fs-gallery-header .fs-ref-title {
  color: #111;
  /* Dark text on white BG */
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.fs-gallery-header .fs-ref-title span {
  color: #e74c3c;
  /* Exact reference highlight color */
}

/* Asymmetric Grid Layout based exactly on the reference image */
.fs-gallery-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 equal columns */
  grid-auto-rows: 250px;
  /* Base row height */
  gap: 15px;
}

.fs-gallery-item-new {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  /* Clean sharp edges like reference */
  cursor: pointer;
  background: #f0f0f0;
}

/* Class overrides to map items to the grid layout */
.fs-grid-large {
  grid-column: span 2;
  grid-row: span 2;
}

.fs-grid-wide {
  grid-column: span 2;
  grid-row: span 1;
}

/* Single standard items automatically span 1x1 */

.fs-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.fs-gallery-item-new:hover .fs-gallery-img {
  transform: scale(1.08);
}

/* Dark Premium Overlay on Hover */
.fs-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 45, 75, 0.85);
  /* Falcon Blue Overlay */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: var(--fs-transition-smooth);
}

.fs-gallery-item-new:hover .fs-gallery-overlay {
  opacity: 1;
}

.fs-gallery-overlay i {
  color: var(--fs-text-white);
  font-size: 2.5rem;
  transform: translateY(20px);
  transition: var(--fs-transition-smooth);
}

.fs-gallery-overlay span {
  color: var(--fs-text-white);
  font-family: var(--fs-font-heading);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: var(--fs-transition-smooth);
  opacity: 0;
}

.fs-gallery-item-new:hover .fs-gallery-overlay i,
.fs-gallery-item-new:hover .fs-gallery-overlay span {
  transform: translateY(0);
  opacity: 1;
}

.fs-gallery-item-new:hover .fs-gallery-overlay span {
  transition-delay: 0.1s;
}

@media (max-width: 991px) {
  .fs-gallery-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .fs-grid-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .fs-grid-wide {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .fs-gallery-grid-new {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .fs-grid-large,
  .fs-grid-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Light Theme Button Customization */
.fs-btn-dark {
  background: var(--fs-falcon-blue);
  color: var(--fs-text-white);
  border: 2px solid transparent;
  box-shadow: 0 10px 20px rgba(4, 45, 75, 0.2);
}

.fs-btn-dark::before {
  background: var(--fs-bg-dark);
}

.fs-btn-dark:hover {
  color: var(--fs-text-white);
  border-color: var(--fs-falcon-blue);
  box-shadow: 0 15px 30px rgba(4, 45, 75, 0.4);
}

/* =========================================
           SECTION 10: CALL TO ACTION (LIGHT THEME)
           ========================================= */
#fs-cta-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  padding: 40px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.fs-cta-subtitle {
  color: var(--fs-falcon-blue);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
  display: inline-block;
}

.fs-cta-title {
  color: var(--fs-bg-dark);
  font-family: var(--fs-font-heading);
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.fs-cta-title span {
  color: var(--fs-falcon-blue);
}

.fs-cta-desc {
  color: #555;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.fs-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fs-btn-whatsapp,
.fs-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  border-radius: 50px;
  font-family: var(--fs-font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--fs-transition-smooth);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.fs-btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
  border: 2px solid transparent;
}

.fs-btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
  color: #ffffff;
}

.fs-btn-call {
  background-color: var(--fs-falcon-blue);
  color: #ffffff;
  border: 2px solid transparent;
}

.fs-btn-call:hover {
  background-color: var(--fs-bg-dark);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(4, 45, 75, 0.4);
  color: #ffffff;
}

.fs-btn-whatsapp i,
.fs-btn-call i {
  font-size: 1.3rem;
}

@media (max-width: 768px) {
  .fs-cta-title {
    font-size: 2.2rem;
  }
}

/* =========================================
           SECTION 11: MEGA FOOTER STYLES
           ========================================= */
#fs-footer {
  background-color: #030609;
  /* Very dark background to contrast with CTA */
  position: relative;
  color: var(--fs-text-muted);
  font-family: var(--fs-font-body);
  overflow: hidden;
  z-index: 1;
}

/* Glowing Top Border */
.fs-footer-top-border {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--fs-accent-glow),
    var(--fs-falcon-blue),
    transparent
  );
  box-shadow: 0 0 20px var(--fs-accent-glow);
}

/* Subtle Background Elements */
#fs-footer::before {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

.fs-footer-logo {
  display: inline-block;
  margin-bottom: 25px;
}

.fs-footer-logo img {
  height: 65px;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
  transition: var(--fs-transition-smooth);
}

.fs-footer-logo:hover img {
  filter: drop-shadow(0 0 15px var(--fs-accent-glow));
  transform: scale(1.05);
}

.fs-footer-about {
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 0.95rem;
  max-width: 90%;
}

.fs-footer-socials {
  display: flex;
  gap: 15px;
}

.fs-footer-socials a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--fs-text-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: var(--fs-transition-fast);
  font-size: 1.2rem;
}

.fs-footer-socials a:hover {
  background: var(--fs-falcon-blue);
  border-color: var(--fs-accent-glow);
  color: var(--fs-accent-glow);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.fs-footer-heading {
  color: var(--fs-text-white);
  font-family: var(--fs-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.fs-footer-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--fs-accent-glow);
  box-shadow: 0 0 10px var(--fs-accent-glow);
}

.fs-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fs-footer-links li {
  margin-bottom: 15px;
}

.fs-footer-links a {
  color: var(--fs-text-muted);
  text-decoration: none;
  transition: var(--fs-transition-fast);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
}

.fs-footer-links a i {
  font-size: 0.7rem;
  color: var(--fs-steel-silver);
  transition: var(--fs-transition-fast);
}

.fs-footer-links a:hover {
  color: var(--fs-accent-glow);
  transform: translateX(5px);
}

.fs-footer-links a:hover i {
  color: var(--fs-accent-glow);
}

.fs-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fs-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.fs-footer-contact li i {
  color: var(--fs-accent-glow);
  font-size: 1.2rem;
  margin-top: 4px;
}

.fs-footer-contact li span {
  color: var(--fs-text-muted);
  font-size: 0.95rem;
}

.fs-footer-bottom {
  background: #010203;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  margin-top: 40px;
}

.fs-footer-bottom p {
  margin: 0;
  color: var(--fs-text-muted);
}

.fs-footer-bottom a {
  color: var(--fs-text-muted);
  text-decoration: none;
  margin-left: 20px;
  transition: var(--fs-transition-fast);
  position: relative;
}

.fs-footer-bottom a:hover {
  color: var(--fs-accent-glow);
}

@media (max-width: 991px) {
  .fs-footer-heading {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .fs-footer-bottom .text-md-end {
    margin-top: 15px;
  }

  .fs-footer-bottom a {
    margin: 0 10px;
  }
}

/* =========================================
           IMAGE LIGHTBOX STYLES (FULLSCREEN KE LIYE)
           ========================================= */
.fs-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fs-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.fs-lightbox-img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  object-fit: contain;
}

.fs-lightbox.active .fs-lightbox-img {
  transform: scale(1);
}

.fs-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--fs-text-white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--fs-transition-fast);
}

.fs-lightbox-close:hover {
  color: var(--fs-accent-glow);
  transform: scale(1.1) rotate(90deg);
}

/* =========================================
           FLOATING SOCIAL BUTTONS (RIGHT EDGE)
           ========================================= */
.fs-floating-socials {
  position: fixed;
  left: 20px;
  bottom: 20%;
  transform: translateY(50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.fs-social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: var(--fs-transition-fast);
  position: relative;
}

.fs-social-whatsapp {
  background-color: #25d366;
}

.fs-social-phone {
  background-color: #d93025;
}

.fs-social-email {
  background-color: #4a90e2;
}

.fs-social-btn:hover {
  transform: scale(1.1) translateX(-5px);
  color: #fff;
}

.fs-social-whatsapp:hover {
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.fs-social-phone:hover {
  box-shadow: 0 0 20px rgba(217, 48, 37, 0.6);
}

.fs-social-email:hover {
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
}

@media (max-width: 768px) {
  .fs-floating-socials {
    bottom: 20px;
    transform: none;
    flex-direction: row;
    left: -10%;
    transform: translateX(50%);
    gap: 20px;
  }
}
