/* 
  Force Technologies - Premium Support Page Styles (2026 Edition)
  Focus: Technical Drawings & Product Catalogs
*/

:root {
  --s-primary: #0033ff;
  --s-secondary: #00c2ff;
  --s-dark: #050a18;
  --s-light: #f8fafc;
  --s-accent: #ffdd00;
  --s-glass: rgba(255, 255, 255, 0.03);
  --s-glass-border: rgba(255, 255, 255, 0.08);
  --s-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --s-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* --- Support Hero --- */
.support-hero {
  position: relative;
  padding: 190px 0 100px;
  background: linear-gradient(135deg, #051024 0%, #0a1628 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* Background Image Overlay */
.support-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/breadcrum.jpg') center/cover no-repeat;
  opacity: 0.7;
  mix-blend-mode: normal;
  z-index: 1;
}

/* Bottom Shading Gradient */
.support-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25px;
  background: linear-gradient(to top, #ffffff, transparent);
  z-index: 2;
}

/* Animated Glowing Background Elements */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  animation: glow-float 10s infinite ease-in-out alternate;
  pointer-events: none;
}

.hero-glow-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.4) 0%, transparent 70%);
}

.hero-glow-2 {
  bottom: -10%;
  right: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(30, 41, 59, 0.3) 0%, transparent 70%);
  animation-delay: -5s;
}

@keyframes glow-float {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, -30px); }
}

.support-hero .container {
  position: relative;
  z-index: 3;
}

.breadcrumb-modern {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.breadcrumb-modern a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--s-transition);
  text-decoration: none;
}

.breadcrumb-modern a:hover {
  color: #fff;
}

.support-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #fff 30%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support-hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 30px;
  opacity: 0.9;
  line-height: 1.6;
}

/* --- Filter Navigation --- */
.support-filters {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 80px;
  z-index: 100;
}

.filter-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 100px;
  background: var(--s-light);
  color: #64748b;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--s-transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-btn i {
  font-size: 1.1rem;
}

.filter-btn:hover {
  background: #fff;
  color: var(--s-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.filter-btn.active {
  background: var(--s-primary);
  color: #fff;
  border-color: var(--s-primary);
  box-shadow: 0 10px 20px rgba(0, 51, 255, 0.2);
}

/* --- Gallery Grid --- */
.support-gallery {
  padding: 80px 0;
  background: #fbfcfd;
}

.gallery-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--s-shadow);
  transition: var(--s-transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  margin-bottom: 30px;
  height: 100%;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.gallery-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f1f5f9;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--s-transition);
}

.gallery-card:hover .gallery-image-wrapper img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 24, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info {
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s var(--s-transition);
}

.gallery-card:hover .gallery-info {
  transform: translateY(0);
}

.gallery-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.gallery-info span {
  font-size: 0.85rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--s-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
  z-index: 3;
}

.gallery-card:hover .view-badge {
  opacity: 1;
  transform: scale(1);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .support-hero { padding: 160px 0 80px; }
  .filter-nav { gap: 10px; }
  .filter-btn { padding: 8px 18px; font-size: 0.85rem; }
}
