/* ============================================================
   Z-FAST — Global Styles
   Colors match the Z-FAST logo: Navy #1d3461 + Orange #f0972a
   ============================================================ */

:root {
  --black: #050507;
  --dark: #080810;
  --dark-2: #090e1a;
  /* navy-tinted dark */
  --dark-3: #0c1220;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.07);

  /* Brand Colors — from Z-FAST Logo */
  --electric: #f0972a;
  /* Logo orange/amber flame */
  --electric-dim: rgba(240, 151, 42, 0.15);
  --electric-glow: rgba(240, 151, 42, 0.35);
  --navy: #1d3461;
  /* Logo dark navy blue */
  --navy-dim: rgba(29, 52, 97, 0.4);
  --navy-mid: #2a4a8a;
  /* Lighter navy for gradients */
  --lime: #a8ff3e;
  /* Keep for success states */
  --lime-dim: rgba(168, 255, 62, 0.12);
  --red: #ff4555;
  --accent: var(--electric);

  --white: #ffffff;
  --gray-100: #f0f0f5;
  --gray-300: #b0b0c8;
  --gray-500: #606080;
  --gray-700: #303048;

  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h: 72px;
  --section-pad: 120px;
  --container: 1280px;
  --glow: 0 0 40px rgba(240, 151, 42, 0.4);
  --glow-sm: 0 0 20px rgba(240, 151, 42, 0.25);
  --glow-navy: 0 0 40px rgba(29, 52, 97, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--electric);
  color: var(--black);
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: var(--electric);
  border-radius: 10px;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.accent {
  color: var(--electric);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.btn:hover::after {
  transform: scaleX(1);
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, #f0a93a, #d4780f);
  color: #fff;
  box-shadow: 0 0 30px var(--electric-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 55px var(--electric-glow);
  transform: translateY(-2px);
}

/* Navy secondary button — shows the brand blue clearly */
.btn-secondary {
  background: linear-gradient(135deg, #1d3461, #0f1e3b);
  color: var(--white);
  border: 1.5px solid rgba(29, 52, 97, 0.8);
  box-shadow: 0 0 20px rgba(29, 52, 97, 0.4);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #2a4a8a, #1d3461);
  border-color: #2a4a8a;
  transform: translateY(-2px);
  box-shadow: 0 0 35px rgba(29, 52, 97, 0.6);
}

.btn-large {
  padding: 18px 48px;
  font-size: 1rem;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
}

.section-dark {
  background: linear-gradient(180deg, #080d1a 0%, #060a14 100%);
  border-top: 1px solid rgba(29, 52, 97, 0.25);
  border-bottom: 1px solid rgba(29, 52, 97, 0.25);
}

/* Orange + Navy horizontal divider stripe between sections */
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--navy) 30%, var(--electric) 50%, var(--navy) 70%, transparent 100%);
  margin: 0;
  border: none;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.section-header p {
  color: var(--gray-300);
  margin-top: 1rem;
  font-size: 1.05rem;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--electric);
  border: 1px solid var(--electric-dim);
  background: var(--electric-dim);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}

#navbar.scrolled {
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05), 0 4px 40px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: relative;
}

/* Default layout: Space items out normally */
.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
  transition: all var(--transition);
}

/* On desktop, absolute center ONLY if there is enough space */
@media (min-width: 1100px) {
  .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 900;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--electric);
  letter-spacing: 0.05em;
  text-shadow: 0 0 20px var(--electric-glow);
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-300);
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.8rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.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);
}

@media (max-width: 992px) {
  .nav-container {
    padding: 0 1.5rem;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(5, 5, 7, 0.98);
    backdrop-filter: blur(25px);
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    /* Reset desktop positioning */
    left: 0;
    transform-origin: right;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
    /* Ensure above the overlay */
  }

  .nav-cta {
    display: none;
  }

  /* Reduce logo size on mobile to prevent overlap with hamburger */
  .logo-text {
    font-size: 1.1rem;
  }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    /* Strong navy sweep — left side */
    radial-gradient(ellipse 65% 70% at -5% 50%, rgba(29, 52, 97, 0.55) 0%, transparent 60%),
    /* Subtle orange accent — top right */
    radial-gradient(ellipse 50% 40% at 100% 10%, rgba(240, 151, 42, 0.12) 0%, transparent 55%),
    /* Deep navy at bottom */
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(15, 30, 60, 0.5) 0%, transparent 60%),
    var(--black);
}

#particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(29, 52, 97, 0.15) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 2rem;
  max-width: 920px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  border: 1px solid var(--electric-dim);
  background: var(--electric-dim);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.2s both;
}

/* Hero logo image (replaces the text title) */
.hero-logo-img {
  width: clamp(140px, 18vw, 240px);
  height: auto;
  margin: 0 auto 0.5rem;
  display: block;
  filter: drop-shadow(0 0 40px rgba(240, 151, 42, 0.35)) drop-shadow(0 0 80px rgba(29, 52, 97, 0.4));
  animation: fadeUp 0.9s 0.4s both;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 60px rgba(240, 151, 42, 0.55)) drop-shadow(0 0 100px rgba(29, 52, 97, 0.5));
}

/* Fallback text title (shown only if logo.png missing) */
.hero-logo-title {
  font-size: clamp(5rem, 18vw, 11rem);
  font-weight: 900;
  /* Gradient: White → Navy → Orange — exact logo colors */
  background: linear-gradient(150deg, #ffffff 0%, #4a72b8 35%, #1d3461 55%, #f0972a 80%, #d4780f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 0.9;
  filter: drop-shadow(0 0 50px rgba(29, 52, 97, 0.5)) drop-shadow(0 0 80px rgba(240, 151, 42, 0.2));
  animation: fadeUp 0.8s 0.4s both;
}

.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--white);
  margin-top: 0.6rem;
  animation: fadeUp 0.8s 0.6s both;
}

.hero-subtitle {
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  max-width: 600px;
  margin-inline: auto;
  animation: fadeUp 0.8s 0.8s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  animation: fadeUp 0.8s 1s both;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  animation: fadeUp 0.8s 1.2s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--electric);
  line-height: 1;
  text-shadow: 0 0 30px var(--electric-glow);
}

.hero-stat span:last-child {
  font-size: 0.8rem;
  color: var(--gray-300);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1.5s both;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--electric), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}

/* ============================================================
   MACHINE SECTION
   ============================================================ */
.machine-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.car-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.car-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 151, 42, 0.4);
  background: rgba(240, 151, 42, 0.08);
  color: var(--electric);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
}

.car-arrow:hover {
  background: rgba(240, 151, 42, 0.22);
  border-color: var(--electric);
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(240, 151, 42, 0.35);
}

.car-arrow svg {
  width: 20px;
  height: 20px;
}

.car-image-frame {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 151, 42, 0.2);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--dark-3);
  box-shadow: 0 0 60px rgba(240, 151, 42, 0.08);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.car-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(240, 151, 42, 0.05) 0%, transparent 70%);
}

.car-glow-ring {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(240, 151, 42, 0.2);
  box-shadow: 0 0 60px rgba(240, 151, 42, 0.15), inset 0 0 60px rgba(240, 151, 42, 0.05);
  animation: pulse 2s ease-in-out infinite;
}

.car-placeholder-text {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--electric);
  margin-top: -100px;
  text-shadow: var(--glow);
}

.car-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.9rem;
  flex-wrap: wrap;
}

.car-overlay-badge {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(240, 151, 42, 0.15);
  border: 1px solid rgba(240, 151, 42, 0.4);
  color: var(--electric);
  padding: 6px 14px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  display: inline-block;
}

.car-indicator {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.car-dot.active {
  background: var(--electric);
  border-color: var(--electric);
  box-shadow: 0 0 8px var(--electric-glow);
  width: 22px;
  border-radius: 4px;
}

.car-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

.car-desc {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin-top: 0.7rem;
  line-height: 1.6;
  min-height: 2.5em;
}

.machine-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.spec-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: all var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--electric), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.spec-card:hover {
  border-color: rgba(240, 151, 42, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

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

.spec-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.spec-value {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--electric);
  line-height: 1;
}

.spec-unit {
  font-size: 0.85rem;
  color: var(--gray-300);
  font-weight: 400;
}

.spec-label {
  font-size: 0.78rem;
  color: var(--gray-500);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.spec-categories {
  max-width: var(--container);
  margin: 3rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.spec-category-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  text-align: center;
  transition: all var(--transition);
}

.spec-category-card:hover {
  border-color: rgba(240, 151, 42, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

.spec-category-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--electric);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ============================================================
   ABOUT US CAROUSEL
   ============================================================ */
.about-carousel-wrap {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 2rem;
}

.about-slide-frame {
  flex: 1;
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(240, 151, 42, 0.2);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--dark-3);
  box-shadow: 0 0 50px rgba(240, 151, 42, 0.06);
  transition: opacity 0.35s ease;
}

.about-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease;
}

.about-slide-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.about-placeholder-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.about-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(240, 151, 42, 0.4);
  background: rgba(240, 151, 42, 0.08);
  color: var(--electric);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.about-arrow:hover {
  background: rgba(240, 151, 42, 0.22);
  border-color: var(--electric);
  transform: scale(1.1);
  box-shadow: 0 0 18px rgba(240, 151, 42, 0.3);
}

.about-arrow svg {
  width: 20px;
  height: 20px;
}

.about-caption-area {
  text-align: center;
  margin-top: 1.2rem;
  padding: 0 2rem;
}

.about-caption {
  color: var(--gray-300);
  font-size: 0.9rem;
  min-height: 1.4em;
  margin-bottom: 0.8rem;
}

.about-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.about-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-700);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  border: none;
  padding: 0;
}

.about-dot.active {
  background: var(--electric);
  transform: scale(1.35);
  box-shadow: 0 0 8px var(--electric-glow);
}

@media (max-width: 640px) {
  .about-carousel-wrap {
    gap: 0.4rem;
  }

  .about-arrow {
    width: 36px;
    height: 36px;
  }
}

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-dept-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: var(--container);
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.dept-tab {
  padding: 8px 20px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition);
}

.dept-tab:hover {
  border-color: var(--electric);
  color: var(--electric);
}

.dept-tab.active {
  background: linear-gradient(135deg, #1d3461, #0f1e3b);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 0 20px rgba(29, 52, 97, 0.5);
}

.dept-tab.active:hover {
  background: linear-gradient(135deg, #2a4a8a, #1d3461);
}

.team-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.member-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  cursor: pointer;
}

.member-card:hover {
  border-color: rgba(240, 151, 42, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), var(--glow-sm);
}

.member-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-3);
}

.member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-img-wrap img {
  transform: scale(1.08);
}

.member-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f40 100%);
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(240, 151, 42, 0.5);
}

.member-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29, 52, 97, 0.95), rgba(240, 151, 42, 0.92));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity var(--transition);
  padding: 1.5rem;
  text-align: center;
}

.member-card:hover .member-hover-overlay {
  opacity: 1;
}

.member-hover-overlay p {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

/* LinkedIn Float Badge — always visible */
.member-linkedin-float {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(10, 102, 194, 0.9);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.member-linkedin-float:hover {
  background: #0a66c2;
  transform: scale(1.15);
  box-shadow: 0 4px 16px rgba(10, 102, 194, 0.5);
}

.member-linkedin-float svg {
  width: 14px;
  height: 14px;
}

.member-info {
  padding: 1.2rem;
}

.member-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}

.member-role {
  font-size: 0.8rem;
  color: var(--electric);
  font-weight: 600;
  margin-top: 0.2rem;
}

.member-dept-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-300);
}

/* ============================================================
   SPONSORSHIP SECTION
   ============================================================ */
.sponsor-benefits {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--electric));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.benefit-card:hover {
  border-color: rgba(240, 151, 42, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.benefit-card p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.7;
}

.sponsors-showcase {
  max-width: var(--container);
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.sponsors-label {
  text-align: center;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.sponsors-carousel {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
}

.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  min-width: 120px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.sponsor-item:hover {
  border-color: rgba(240, 151, 42, 0.3);
  transform: scale(1.05);
}

.sponsor-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.8) grayscale(0.3);
  transition: filter var(--transition);
}

.sponsor-item:hover img {
  filter: brightness(1) grayscale(0);
}

.sponsor-name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-300);
}

.sponsor-tier {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.sponsor-tier.gold {
  color: #ffd700;
}

.sponsor-tier.silver {
  color: #c0c0c0;
}

.sponsor-tier.bronze {
  color: #cd7f32;
}

.sponsor-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 0 2rem;
}

.sponsor-cta p {
  margin-top: 1rem;
  color: var(--gray-300);
  font-size: 0.9rem;
}

/* ============================================================
   SEASONS & NEWS SECTION
   ============================================================ */
.seasons-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.season-card {
  background: var(--dark-3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: visible;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.season-card:hover {
  border-color: rgba(240, 151, 42, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(240, 151, 42, 0.08);
}

.season-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-2);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.season-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.season-card:hover .season-img img {
  transform: scale(1.05);
}

.season-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f40 100%);
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: rgba(240, 151, 42, 0.4);
  font-weight: 900;
}

.season-body {
  padding: 1.8rem;
}

.season-year {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.5rem;
}

.season-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.season-body p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.7;
}

.season-achievements {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  background: rgba(240, 151, 42, 0.08);
  border: 1px solid rgba(240, 151, 42, 0.2);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--electric);
  font-weight: 500;
}

.season-achievements::before {
  content: '🏆 ';
}

.news-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.news-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.news-card:hover {
  border-color: rgba(240, 151, 42, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.news-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-3);
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.05);
}

.news-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 3rem;
  color: var(--gray-700);
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
}

.news-body {
  padding: 1.5rem;
}

.news-category-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.news-category-badge.achievement {
  background: rgba(240, 151, 42, 0.12);
  color: var(--electric);
}

.news-category-badge.technical {
  background: rgba(29, 52, 97, 0.35);
  color: #6fa3f0;
}

.news-category-badge.team {
  background: rgba(255, 62, 62, 0.1);
  color: var(--red);
}

.news-category-badge.general {
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-300);
}

.news-body h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.news-body p {
  color: var(--gray-300);
  font-size: 0.875rem;
  line-height: 1.7;
}

.news-date {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 1rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
}

.contact-item:hover {
  border-color: rgba(240, 151, 42, 0.3);
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 0.3rem;
}

.contact-item p {
  color: var(--gray-300);
  font-size: 0.95rem;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--gray-300);
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--electric);
  border-color: var(--electric);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--glow-sm);
}

.social-btn svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all var(--transition);
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--electric);
  background: rgba(240, 151, 42, 0.05);
  box-shadow: 0 0 0 3px rgba(240, 151, 42, 0.12);
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.5rem;
}

.form-feedback {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem;
  border-radius: 8px;
  display: none;
}

.form-feedback.success {
  color: var(--lime);
  background: var(--lime-dim);
  display: block;
}

.form-feedback.error {
  color: var(--red);
  background: rgba(255, 62, 62, 0.1);
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark-2);
  border-top: 1px solid var(--card-border);
  padding: 3rem 0;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo img {
  height: 40px;
  margin: 0 auto;
}

.footer-logo p {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--gray-300);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--electric);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 60px rgba(240, 151, 42, 0.15), inset 0 0 60px rgba(240, 151, 42, 0.05);
  }

  50% {
    box-shadow: 0 0 100px rgba(240, 151, 42, 0.35), inset 0 0 80px rgba(240, 151, 42, 0.1);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleY(0.6);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--electric);
  animation: spin 0.8s linear infinite;
  margin: 2rem auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .machine-layout {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 80px;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .machine-specs {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .machine-specs {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT US CAROUSEL
   ============================================================ */
.about-carousel-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-slide-frame {
  width: 100%;
  aspect-ratio: 16 / 7;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.about-slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-slide-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--gray-500);
}

.about-placeholder-icon {
  font-size: 3rem;
}

.about-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240, 151, 42, 0.15);
  border: 1px solid rgba(240, 151, 42, 0.3);
  color: var(--electric);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.about-arrow:hover {
  background: rgba(240, 151, 42, 0.3);
}

.about-arrow-prev {
  left: 12px;
}

.about-arrow-next {
  right: 12px;
}

.about-arrow svg {
  width: 18px;
  height: 18px;
}

.about-caption-area {
  text-align: center;
  margin-top: 1rem;
}

.about-caption {
  color: var(--gray-300);
  font-size: 1rem;
  min-height: 1.5em;
  margin-bottom: 0.75rem;
}

.about-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--gray-700);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.about-dot.active {
  background: var(--electric);
  transform: scale(1.3);
}

/* ============================================================
   MORE INFORMATION BUTTON (Season Cards)
   ============================================================ */
.btn-more-info {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.8rem;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--electric);
  background: rgba(240, 151, 42, 0.08);
  border: 1px solid rgba(240, 151, 42, 0.3);
  border-radius: 30px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-more-info:hover {
  background: rgba(240, 151, 42, 0.18);
  border-color: rgba(240, 151, 42, 0.6);
  transform: translateY(-1px);
}

.btn-more-info:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
   SEASON GALLERY MODAL
   ============================================================ */
.sg-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 7, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.25s ease;
}

.sg-modal-box {
  position: relative;
  background: var(--dark-3);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 92vw;
  width: 900px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  animation: slideUp 0.3s ease;
}

.sg-modal-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--electric);
  margin-bottom: 1.2rem;
  text-align: center;
}

.sg-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--gray-300);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), border-color var(--transition);
}

.sg-modal-close:hover {
  color: var(--white);
  border-color: var(--electric);
}

.sg-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}

.sg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sg-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gray-500);
}

.sg-frame {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  line-height: 1;
}

.sg-arrow:hover {
  background: rgba(240, 151, 42, 0.4);
}

.sg-arrow-prev {
  left: 10px;
}

.sg-arrow-next {
  right: 10px;
}

.sg-caption {
  text-align: center;
  color: var(--gray-300);
  font-size: 0.95rem;
  margin-top: 0.9rem;
  min-height: 1.4em;
}

.sg-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0.6rem;
}

.sg-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-700);
  transition: background var(--transition), transform var(--transition);
}

.sg-dot.active {
  background: var(--electric);
  transform: scale(1.35);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Season Gallery — Info block (desc + achievements) inside modal */
.sg-info-block {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(240, 151, 42, 0.05);
  border: 1px solid rgba(240, 151, 42, 0.15);
  border-radius: var(--radius);
}

.sg-info-desc {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 0.6rem;
}

.sg-info-ach {
  color: var(--electric);
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(240, 151, 42, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  display: inline-block;
  margin: 0;
}

/* No-gallery placeholder text */
.sg-no-gallery {
  text-align: center;
  color: var(--gray-500);
  padding: 1rem 0;
  font-size: 0.9rem;
}