/* HARDWARE Design System — Industrial Luxury */
:root {
  /* Backgrounds */
  --background: 0 0% 100%;
  --foreground: 0 0% 4%;

  --card: 0 0% 100%;
  --card-foreground: 0 0% 10%;

  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 10%;

  /* Brand Colors */
  --primary: 358 87% 52%;
  /* Brand color (Red in this case) */
  --primary-foreground: 0 0% 100%;

  --secondary: 0 0% 97%;
  /* Light Surface */
  --secondary-foreground: 0 0% 15%;

  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 25%;

  --accent: 0 0% 92%;
  /* Light Silver/Gray */
  --accent-foreground: 0 0% 4%;

  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 100%;

  --border: 0 0% 89%;
  --input: 0 0% 96%;
  --ring: 358 87% 52%;

  --radius: 0.25rem;

  /* Custom Tokens */
  --gold: 38 65% 50%;
  --gold-light: 38 80% 65%;
  --silver: 0 0% 85%;
  --charcoal: 0 0% 96%;
  --deep-black: 0 0% 10%;
  --surface: 0 0% 98%;
  --surface-raised: 0 0% 100%;

  /* Gradients */
  --gradient-hero: linear-gradient(160deg, hsl(0 0% 100%) 0%, hsl(0 0% 98%) 50%, hsl(358 15% 97%) 100%);
  --gradient-red: linear-gradient(135deg, hsl(358 87% 40%), hsl(358 95% 50%), hsl(358 70% 35%));
  --gradient-gold: linear-gradient(135deg, hsl(358 87% 45%), hsl(358 90% 65%), hsl(358 60% 40%));
  --gradient-silver: linear-gradient(135deg, hsl(0 0% 40%), hsl(0 0% 70%), hsl(0 0% 45%));
  --gradient-card: linear-gradient(180deg, hsl(0 0% 100%) 0%, hsl(0 0% 98%) 100%);
  --gradient-overlay: linear-gradient(to top, hsla(0, 0%, 100%, 0.95) 0%, hsla(0, 0%, 100%, 0.4) 60%, transparent 100%);

  /* Shadows */
  --shadow-gold: 0 0 30px hsla(38, 65%, 50%, 0.15);
  --shadow-card: 0 10px 30px hsla(0, 0%, 0%, 0.05);
  --shadow-hover: 0 20px 50px hsla(0, 0%, 0%, 0.1), 0 0 20px hsla(38, 65%, 50%, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(var(--border));
}

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

#hero-parallax-img {
  transform: scale(1.1);
}

/* ── HERO OPTIMIZATION ── */
section.min-h-screen {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

section.min-h-screen .relative.z-10 {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.font-outfit {
  font-family: 'Outfit', sans-serif;
}

.font-syncopate {
  font-family: 'Syncopate', sans-serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* Reveal animation utility */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ── NAVBAR ── */
#main-nav {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(to bottom, hsla(var(--background), 0.5) 0%, transparent 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#main-nav .font-outfit {
  text-shadow: none;
}

#main-nav.bg-background\/95 {
  background-color: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

#main-nav.bg-background\/95 a,
#main-nav.bg-background\/95 button {
  color: #000000 !important;
}

#main-nav.bg-background\/95 .text-black,
#main-nav.bg-background\/95 .text-foreground\/80 {
  color: #000000 !important;
}

/* Gold text gradient */
.text-gold-gradient {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-red-gradient {
  background: var(--gradient-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 4px rgba(186, 31, 35, 0.1));
}

/* Silver text gradient */
.text-silver-gradient {
  background: var(--gradient-silver);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Metallic divider */
.divider-gold {
  background: var(--gradient-gold);
  height: 1px;
}

/* Card hover lift */
.card-hover {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

/* Button gold micro-interaction */
.btn-gold {
  background: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: hsl(0 0% 100% / 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-gold:hover::after {
  opacity: 1;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px hsl(43 72% 55% / 0.4);
}

/* ── DOWNLOAD BROCHURE CTA ── */
.nav-btn-brochure {
  background: #ff2b2b;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 43, 43, 0.2);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-btn-brochure svg {
  width: 16px;
  height: 16px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-btn-brochure:hover {
  background: #d41e1e;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 43, 43, 0.4);
  color: #ffffff !important;
}

.nav-btn-brochure:hover svg {
  transform: translateY(2px);
}

.btn-red {
  background: var(--gradient-red);
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-charcoal {
  background: #111111;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ff2b2b;
}

.btn-charcoal:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 43, 43, 0.1);
  border-color: #ff2b2b;
  box-shadow: 0 0 20px rgba(255, 43, 43, 0.2);
}


/* Button outline */
.btn-outline-silver {
  border: 1px solid hsl(var(--silver));
  color: hsl(var(--foreground));
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-silver:hover {
  background: hsl(var(--silver) / 0.12);
  border-color: hsl(var(--foreground));
  transform: translateY(-2px);
}

/* Noise texture overlay */
.noise-overlay {
  position: relative;
}

.noise-overlay::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.04'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: overlay;
}

.parallax-container {
  overflow: hidden;
  position: relative;
}

.parallax-img {
  transition: transform 0.1s linear;
  will-change: transform;
}

.counter-value {
  font-family: 'Syncopate', sans-serif;
  letter-spacing: -0.02em;
  font-weight: 100;
  /* Extra bold for perfect visibility */
  display: inline-block;
  line-height: 1;
}

.product-img-overlay {
  background: var(--gradient-overlay);
}

.section-accent {
  display: inline-block;
  width: 48px;
  height: 2px;
  background: var(--gradient-gold);
  margin-bottom: 1rem;
}

.tag-gold {
  background: hsl(var(--gold) / 0.15);
  border: 1px solid hsl(var(--gold) / 0.3);
  color: hsl(var(--gold));
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 0.2rem 0.75rem;
  border-radius: 2px;
  display: inline-block;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: hsl(var(--gold) / 0.4);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: hsl(var(--gold) / 0.7);
}

.page-enter {
  animation: pageEnter 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.input-luxury {
  background: hsl(var(--surface-raised));
  border: 1px solid hsl(0 0% 14%);
  color: hsl(var(--foreground));
  transition: border-color 0.2s;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 2px;
}

.input-luxury:focus {
  outline: none;
  border-color: hsl(var(--gold));
  box-shadow: 0 0 0 1px hsl(var(--gold) / 0.2);
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }

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

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px) skewY(1deg);
  }

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

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

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

.animate-hero-text {
  animation: heroTextIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-hero-text-delay-1 {
  animation: heroTextIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
  opacity: 0;
}

.animate-hero-text-delay-2 {
  animation: heroTextIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
  opacity: 0;
}

.animate-hero-text-delay-3 {
  animation: heroTextIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
  opacity: 0;
}

.bg-surface {
  background-color: hsl(var(--surface));
}

.bg-background {
  background-color: hsl(var(--background));
}

.border-border {
  border-color: hsl(var(--border));
}

.text-muted-foreground {
  color: hsl(var(--muted-foreground));
}

.text-foreground {
  color: hsl(var(--foreground));
}

.text-gold {
  color: hsl(var(--gold));
}

.bg-gradient-red {
  background: var(--gradient-red);
}

/* ── REDESIGNED PREMIUM FOOTER — KORTEX ── */
.premium-footer {
  position: relative;
  background: #0a0a0a;
  color: #ffffff;
  padding-top: 5.5rem;
  padding-bottom: 0;
  overflow: hidden;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 43, 43, 0.4), transparent);
}

.footer-glow {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255, 43, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 43, 43, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.footer-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #ffffff;
  margin-bottom: 2.25rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 32px;
  height: 2px;
  background: #ff2b2b;
  border-radius: 2px;
}

.footer-link-premium {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
  width: fit-content;
  position: relative;
  padding-left: 0;
}

.footer-link-premium:hover {
  color: #ffffff;
  transform: translateX(10px);
}

.footer-link-premium::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.4s ease;
  color: #ff2b2b;
}

.footer-link-premium:hover::before {
  opacity: 1;
  left: -24px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-social-btn:hover {
  background: #ff2b2b;
  color: #ffffff;
  border-color: #ff2b2b;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 43, 43, 0.2);
}

.footer-newsletter-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2.25rem;
  border-radius: 14px;
}

.footer-input-group {
  position: relative;
  display: flex;
  margin-top: 1.5rem;
}

.footer-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.95rem 1.25rem;
  border-radius: 10px 0 0 10px;
  color: #ffffff;
  width: 100%;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.footer-input:focus {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 43, 43, 0.4);
}

.footer-submit {
  background: #ff2b2b;
  color: #ffffff;
  padding: 0 1.5rem;
  border-radius: 0 10px 10px 0;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-submit:hover {
  background: #e62222;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  padding: 2.75rem 0;
  margin-top: 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright-text {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}

.footer-bottom-links {
  display: flex;
  gap: 2.25rem;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.825rem;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.footer-bottom-link:hover {
  color: #ffffff;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 43, 43, 0.08);
  border: 1px solid rgba(255, 43, 43, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff2b2b;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
  transform: scale(1.1);
  background: rgba(255, 43, 43, 0.12);
}

.contact-info-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.contact-info-text b {
  display: block;
  color: #ffffff;
  font-size: 0.725rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

/* ── TOAST NOTIFICATION ── */
#toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

#toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-content {
  background: hsl(var(--surface));
  border: 1px solid hsl(var(--border));
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
}

.toast-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(var(--gold), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--gold));
  flex-shrink: 0;
}

.toast-text h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
}

.toast-text p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

/* ── MODERN PRELOADER ── */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--background));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-logo {
  width: 240px;
  height: auto;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(15px);
  animation: preloader-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}


.preloader-line-wrapper {
  width: 240px;
  height: 4px;
  background: hsl(var(--border) / 0.5);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  animation: preloader-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.preloader-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-red);
  animation: preloader-slide 2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes preloader-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloader-slide {
  0% {
    left: -100%;
  }

  50% {
    left: 0%;
  }

  100% {
    left: 100%;
  }
}

@media (max-width: 640px) {
  .preloader-logo {
    width: 180px;
  }

  .preloader-line-wrapper {
    width: 160px;
  }
}

/* ── LUXURY SHOWCASE ── */
.luxury-showcase-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  .luxury-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .luxury-showcase-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.luxury-card {
  position: relative;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  display: block;
  cursor: default;
}

@media (min-width: 1024px) {
  .luxury-card {
    height: 420px;
  }
}

.luxury-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

.luxury-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.luxury-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  z-index: 2;
}

.luxury-card-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.35rem 1rem;
  background: red;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 3;
}

.luxury-card-title {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  order: 2;
}

.luxury-card-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  max-width: 90%;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  order: 3;
}

.luxury-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background-color: #e91e23;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  order: 1;
  align-self: flex-start;
  margin-bottom: 1rem;
}

/* Mobile & Desktop Hover Synergy */
.luxury-card:hover .luxury-card-desc,
.luxury-card:active .luxury-card-desc {
  opacity: 0.6;
  transform: translateY(-5px);
}

.luxury-card:hover .luxury-card-btn,
.luxury-card:active .luxury-card-btn {
  opacity: 1;
  transform: translateY(0);
}

.luxury-card-btn:hover {
  background-color: #ff2b2b;
  transform: scale(1.05);
}

/* Specific mobile touch fix */
@media (hover: none) {
  .luxury-card:active .luxury-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 100%);
  }
}

/* Mobile swipe container */
@media (max-width: 639px) {
  .luxury-showcase-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .luxury-showcase-grid::-webkit-scrollbar {
    display: none;
  }

  .luxury-card {
    min-width: 280px;
    scroll-snap-align: center;
  }
}

/* Luxury Slider Dots */
.luxury-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.luxury-slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.luxury-slider-dots .dot.active {
  background-color: #ff2b2b;
  width: 24px;
  border-radius: 10px;
}

/* ── PREMIUM ABOUT SECTION STYLES ── */
#about-hardware {
  background: radial-gradient(circle at top right, #ffffff 0%, #f9f9f9 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, rgba(255, 43, 43, 0.4), transparent, rgba(255, 43, 43, 0.2));
  z-index: -1;
  border-radius: inherit;
  opacity: 0.5;
}

.about-image-container:hover .about-floating-card {
  transform: translateY(-15px) scale(1.05);
}

.about-floating-card {
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-btn-premium {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid #ff2b2b;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}

.about-btn-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ff2b2b;
  transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

.about-btn-premium:hover {
  color: #000000;
  box-shadow: 0 0 25px rgba(255, 43, 43, 0.3);
}

.about-btn-premium:hover::before {
  left: 0;
}

/* Animations Trigger */
#about-hardware.visible .reveal-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

#about-hardware.visible .reveal-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

#about-hardware.visible .reveal-scale {
  opacity: 1 !important;
  transform: scale(1) !important;
}

@media (max-width: 1023px) {
  .about-floating-card {
    left: 50% !important;
    bottom: 0 !important;
    transform: translateX(-50%) !important;
  }

  .about-image-container {
    margin-bottom: 40px;
  }

  .luxury-card-desc {
    color: #ffffff !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .luxury-card-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}