/* ============================================
   ZERO HOME APPLIANCES — Design System
   Theme: Clean White with Deep Blue #1B4DDB accents
   Typography: Poppins + Inter
   ============================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --black: #ffffff;
  --dark: #f8f8f8;
  --dark-gray: #f0f0f0;
  --medium-gray: #e5e5e5;
  --light-gray: #d0d0d0;
  --silver: #666666;
  --silver-light: #444444;
  --white: #111111;
  --red: #1B4DDB;
  --red-dark: #1539A6;
  --red-light: #4169E1;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(27, 77, 219, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--silver-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[data-anim].animate__animated {
  --animate-duration: 900ms;
  --animate-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes pulse {

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

  50% {
    transform: scale(1.08);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(10px, -15px) rotate(2deg);
  }

  50% {
    transform: translate(-5px, -25px) rotate(-1deg);
  }

  75% {
    transform: translate(-15px, -10px) rotate(1deg);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(27, 77, 219, 0.4);
  }

  50% {
    box-shadow: 0 0 40px rgba(27, 77, 219, 0.7);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes textShimmer {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes borderGlow {

  0%,
  100% {
    border-color: rgba(27, 77, 219, 0.15);
  }

  50% {
    border-color: rgba(27, 77, 219, 0.45);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(27, 77, 219, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(27, 77, 219, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(27, 77, 219, 0);
  }
}

/* ---------- Animation Utilities ---------- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delay utilities for children */
.stagger-children .animate-on-scroll:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children .animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children .animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children .animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-children .animate-on-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-children .animate-on-scroll:nth-child(6) {
  transition-delay: 0.5s;
}

/* Noise texture overlay for depth */
.noise-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Glow orb decorative elements */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  animation: floatSlow 12s ease-in-out infinite;
}

.glow-orb-red {
  background: radial-gradient(circle, rgba(27, 77, 219, 0.3) 0%, transparent 70%);
}

.glow-orb-silver {
  background: radial-gradient(circle, rgba(100, 100, 100, 0.05) 0%, transparent 70%);
}

/* Section divider with gradient line */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 77, 219, 0.3), rgba(192, 192, 192, 0.1), rgba(27, 77, 219, 0.3), transparent);
  border: none;
  margin: 0;
}

/* ---------- Section Headers ---------- */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  padding: 8px 22px 8px 28px;
  border: 1px solid rgba(27, 77, 219, 0.25);
  border-radius: 50px;
  background: rgba(27, 77, 219, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition);
  position: relative;
}

.section-header .label::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.section-header .label:hover {
  background: rgba(27, 77, 219, 0.12);
  border-color: rgba(27, 77, 219, 0.4);
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #111111 0%, #444444 50%, #111111 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(27, 77, 219, 0.35);
  animation: ripple 3s ease-in-out infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(27, 77, 219, 0.6);
  animation: none;
}

.btn-secondary {
  background: rgba(0, 0, 0, 0.03);
  color: var(--white);
  border: 2px solid rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red-light);
  background: rgba(27, 77, 219, 0.08);
  transform: translateY(-3px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar.scrolled .brand-logo {
  width: 36px;
  height: 36px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-logo:hover .brand-logo {
  transform: rotate(-6deg) scale(1.08);
  filter: drop-shadow(0 4px 12px rgba(27, 77, 219, 0.4));
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
  transition: var(--transition);
}

.nav-logo:hover .brand-text {
  color: var(--red-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--red), var(--red-dark)) !important;
  color: #ffffff !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(27, 77, 219, 0.4);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--silver-light);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
  padding-bottom: 60px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 255, 0.85) 100%);
  z-index: 1;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 160px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(27, 77, 219, 0.08);
  border: 1px solid rgba(27, 77, 219, 0.2);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease forwards;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  letter-spacing: 0.03em;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--red) 0%, #5B7FE8 50%, var(--red-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s linear infinite;
}

.hero p {
  font-size: 1.2rem;
  color: #444444;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.stat-item {
  padding: 16px 20px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  transition: all 0.4s ease;
  min-width: 120px;
  text-align: center;
}

.stat-item:hover {
  background: rgba(27, 77, 219, 0.06);
  border-color: rgba(27, 77, 219, 0.2);
  transform: translateY(-4px);
}

.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
}

.stat-item h3 span {
  color: var(--red);
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--silver);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Hero floating image on right (desktop) */
.hero-visual {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  z-index: 2;
  opacity: 0.15;
}

.hero-visual img {
  width: 100%;
  height: auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(27, 77, 219, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: var(--white);
}

.about-content p {
  margin-bottom: 18px;
  color: var(--silver);
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-feature:hover {
  background: rgba(27, 77, 219, 0.05);
  border-color: rgba(27, 77, 219, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.about-feature:hover::before {
  opacity: 1;
}

.about-feature .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  font-size: 1.2rem;
  color: #ffffff;
}

.about-feature h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--white);
}

.about-feature p {
  font-size: 0.85rem;
  color: var(--silver);
  margin: 0;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 16px;
}

.about-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

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

.about-img:hover img {
  transform: scale(1.08);
}

.about-img.large {
  grid-row: span 2;
}

/* Map section */
.about-map {
  margin-top: 70px;
  text-align: center;
}

.about-map h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.about-map p {
  color: var(--silver);
  margin-bottom: 30px;
}

.about-map img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* ============================================
   DISCOVER OUR BRAND SECTION
   ============================================ */
.discover-section {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.discover-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.discover-content {
  padding-right: 20px;
}

.discover-label {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
  font-weight: 600;
}

.discover-content h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}

.discover-content p {
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.7;
}

.discover-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.progress-item {
  width: 100%;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.progress-label {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  font-size: 1.05rem;
}

.progress-value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--red);
}

.progress-track {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
  border-radius: 10px;
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.discover-btn {
  align-self: flex-start;
  margin-top: 16px;
}

@media (max-width: 992px) {
  .discover-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .discover-content {
    padding-right: 0;
  }
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
#products {
  background: var(--black);
  position: relative;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.product-tab {
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--silver);
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}

.product-tab:hover {
  border-color: rgba(27, 77, 219, 0.3);
  color: var(--white);
}

.product-tab.active {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: var(--red);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(27, 77, 219, 0.3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--dark-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(27, 77, 219, 0.3), transparent 50%, rgba(192, 192, 192, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(27, 77, 219, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), 0 0 30px rgba(27, 77, 219, 0.08);
}

.product-card:hover::after {
  opacity: 1;
}

.product-card-img {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img img {
  transform: scale(1.1);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--red);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  z-index: 2;
}

.product-card-body {
  padding: 24px;
}

.product-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-card-body p {
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.product-spec {
  padding: 5px 12px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--silver);
}

.product-card-body .btn {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 0.85rem;
}

/* ============================================
   OFFERS SECTION
   ============================================ */
#offers {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.offers-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-light) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}

.offers-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  animation: float 6s ease-in-out infinite;
}

.offers-banner h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 12px;
  position: relative;
  color: #ffffff;
}

.offers-banner p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  position: relative;
}

.offers-banner .btn {
  position: relative;
  background: #ffffff;
  color: var(--red);
  font-weight: 700;
}

.offers-banner .btn:hover {
  background: #111111;
  color: #ffffff;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.offer-card {
  background: var(--dark-gray);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  position: relative;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 77, 219, 0.2);
}

.offer-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.offer-card:hover .offer-card-img img {
  transform: scale(1.06);
}

.offer-discount {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  background: var(--red);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 50px;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

.offer-card-body {
  padding: 24px;
}

.offer-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.offer-card-body p {
  font-size: 0.9rem;
  color: var(--silver);
  margin-bottom: 14px;
}

.offer-price {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offer-price .old-price {
  font-size: 1rem;
  color: var(--silver);
  text-decoration: line-through;
}

.offer-price .new-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
  font-family: var(--font-heading);
}

/* ============================================
   CATEGORY GRID SECTION
   ============================================ */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  /* Full bleed trick */
  margin-top: 40px;
}

.category-card {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  cursor: pointer;
}

.category-card:last-child {
  border-right: none;
}

.category-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.2) 100%);
  transition: background 0.5s ease;
  z-index: 2;
}

.category-content {
  position: relative;
  z-index: 3;
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(10px);
}

.category-content h3 {
  color: #ffffff;
  font-size: 1.8rem;
  font-family: var(--font-heading);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.02em;
}

.category-content h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--red);
  margin: 12px auto 0;
  transition: width 0.4s ease;
}

.category-card:hover .category-content h3::after {
  width: 80px;
}

.category-btn {
  display: inline-block;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  /* Squared corners as per image */
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.category-card:hover .category-bg {
  transform: scale(1.08);
  /* Zoom effect on hover */
}

.category-card:hover .category-overlay {
  background: linear-gradient(to top, rgba(27, 77, 219, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.category-card:hover .category-content {
  transform: translateY(0);
}

.category-card:hover .category-btn {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, 0.15);
}

.category-btn:hover {
  background: #ffffff !important;
  color: #111111 !important;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card {
    height: 40vh;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .category-card:nth-child(even) {
    border-right: none;
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    border-right: none;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
  background: var(--black);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  background: var(--dark-gray);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-card:hover {
  background: rgba(245, 245, 245, 0.9);
  border-color: rgba(27, 77, 219, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateX(6px);
}

.contact-card .icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  border-radius: var(--radius-sm);
  color: #ffffff;
}

.contact-card .icon svg {
  width: 20px;
  height: 20px;
}

.contact-card h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--silver);
  margin: 0;
}

.contact-card a {
  color: var(--silver);
}

.contact-card a:hover {
  color: var(--red-light);
}

.contact-form {
  background: rgba(248, 248, 248, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--silver);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(27, 77, 219, 0.15);
  background: #ffffff;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

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

.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* Map embed */
.contact-map {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(95%);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--dark) 0%, #eeeeee 100%);
  padding: 70px 0 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(27, 77, 219, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo .brand-logo {
  width: 36px;
  height: 36px;
}

.footer-logo .brand-text {
  font-size: 1.25rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--silver);
  max-width: 300px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: var(--silver);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #ffffff;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(27, 77, 219, 0.35);
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 18px;
  color: var(--white);
}

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

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--silver);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--red-light);
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--silver);
}

.footer-bottom a {
  color: var(--red);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  z-index: -1;
  animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 32px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 77, 219, 0.2);
  border: 1px solid rgba(27, 77, 219, 0.3);
  border-radius: 12px;
  color: var(--red-light);
  font-size: 1.1rem;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 100px 30px 30px;
    gap: 4px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat-item {
    min-width: 0;
    flex: 1 1 80px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .about-img.large {
    grid-row: auto;
    height: 250px;
  }

  .about-img {
    height: 200px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .offers-banner {
    padding: 40px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 50px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .hero {
    min-height: 600px;
  }

  .stat-item h3 {
    font-size: 1.6rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    bottom: 80px;
    right: 22px;
  }
}

/* ============================================
   HERO PARTICLES & CURSOR EFFECTS
   ============================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(27, 77, 219, 0.5);
  border-radius: 50%;
  pointer-events: none;
  animation: particleFloat linear infinite;
}

.particle:nth-child(odd) {
  background: rgba(0, 0, 0, 0.08);
}

.particle:nth-child(3n) {
  width: 2px;
  height: 2px;
  background: rgba(27, 77, 219, 0.3);
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0) scale(0);
    opacity: 0;
  }

  10% {
    opacity: 1;
    transform: scale(1);
  }

  90% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-100vh) translateX(var(--drift)) scale(0.5);
    opacity: 0;
  }
}

.cursor-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 77, 219, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  transform: translate(-50%, -50%);
}

.cursor-glow.active {
  opacity: 1;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-rotate {
  opacity: 0;
  transform: perspective(800px) rotateY(8deg) translateX(30px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-rotate.revealed {
  opacity: 1;
  transform: perspective(800px) rotateY(0deg) translateX(0);
}

/* ============================================
   CARD SPOTLIGHT HOVER
   ============================================ */
.card-spotlight {
  position: relative;
  overflow: hidden;
}

.card-spotlight::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 77, 219, 0.12) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.card-spotlight:hover::after {
  opacity: 1;
}

/* ============================================
   MAGNETIC LINK UNDERLINE
   ============================================ */
.footer-col ul li a {
  position: relative;
  display: inline-block;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col ul li a:hover::after {
  width: 100%;
}

/* ============================================
   CATEGORY CARD 3D TILT
   ============================================ */
.category-card {
  transition: transform 0.15s ease;
}

.category-card.tilting {
  transition: none;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-light));
  z-index: 1001;
  transition: none;
  box-shadow: 0 0 10px rgba(27, 77, 219, 0.5);
}

/* ============================================
   TEXT SPLIT ANIMATION
   ============================================ */
.char-wrap {
  display: inline-block;
  overflow: hidden;
}

.char-inner {
  display: inline-block;
  transform: translateY(110%);
  animation: charReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes charReveal {
  to {
    transform: translateY(0);
  }
}

/* ============================================
   SECTION ENTRANCE LINES
   ============================================ */
.section-header h2 {
  position: relative;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), transparent);
  margin: 16px auto 0;
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.section-header.visible h2::after,
.section-header.revealed h2::after {
  width: 80px;
}

@media (prefers-reduced-motion: reduce) {

  .section-header .label::before,
  .hero h1 .highlight,
  .section-header h2,
  .btn-primary,
  .whatsapp-float,
  .whatsapp-float::before,
  .particle,
  .char-inner {
    animation: none !important;
  }

  .animate-on-scroll,
  .animate-left,
  .animate-right,
  .reveal-up,
  .reveal-scale,
  .reveal-rotate {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-particles,
  .cursor-glow {
    display: none;
  }

  .char-inner {
    transform: none !important;
  }
}