/* ============================================================
   GOODMIX PLC — FUTURISTIC DESIGN SYSTEM 2026
   ============================================================ */

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

/* ─────────────────────────────────────────
   CSS CUSTOM PROPERTIES (TOKENS)
───────────────────────────────────────── */
:root {
  /* Brand Colors */
  --primary: #0A1F44;
  --primary-light: #0d2a5e;
  --primary-mid: #112255;
  --accent: #D4AF37;
  --accent-light: #f0d060;
  --accent-dark: #a88420;

  /* Division Colors */
  --furniture-warm: #C8894A;
  --furniture-beige: #F5E9D3;
  --dairy-green: #00E676;
  --dairy-light: #B9F6CA;
  --metal-silver: #B0BEC5;
  --metal-dark: #263238;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #E8EDF5;
  --gray-300: #9DAFC8;
  --gray-500: #5A6A80;
  --gray-700: #2E3A4E;
  --dark: #060F1E;

  /* Glass System */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(212, 175, 55, 0.25);
  --glass-blur: blur(18px);
  --glass-hover: rgba(255, 255, 255, 0.10);

  /* Glow */
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.35), 0 0 60px rgba(212, 175, 55, 0.15);
  --glow-blue: 0 0 30px rgba(10, 31, 68, 0.5);
  --glow-green: 0 0 25px rgba(0, 230, 118, 0.35);
  --glow-silver: 0 0 25px rgba(176, 190, 197, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-mid: 0.4s ease;
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Spacing */
  --section-padding: 120px 0;
  --container-width: 1280px;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
}

/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─── Performance hints ─── */
section {
  contain: layout style;
}

.hero-slide,
.slider-img,
.division-card,
.team-card {
  will-change: opacity, transform;
}

.reveal,
.reveal-left,
.reveal-right {
  will-change: opacity, transform;
}


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

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Custom Cursor */
body {
  cursor: none;
}

a,
button,
.btn,
.team-card,
.division-card,
.showroom-card,
.nav-logo {
  cursor: none !important;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  background: var(--accent);
  border-radius: 50%;
  transition: opacity 0.15s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  transition: width 0.2s ease-out, height 0.2s ease-out, margin 0.2s ease-out, background 0.2s ease-out, border-color 0.2s ease-out;
}

body.cursor-hover .cursor-dot {
  transform: scale(0.1) !important;
  opacity: 0;
}

body.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent);
}

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

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

button {
  cursor: pointer;
  border: none;
  outline: none;
}

ul,
ol {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ─────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 600px;
  line-height: 1.75;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-mid);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: 50px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  box-shadow: var(--glow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.5), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

/* Ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ─────────────────────────────────────────
   PARTICLES CANVAS
───────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-mid);
}

#navbar.scrolled {
  background: rgba(6, 15, 30, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 48px;
  width: auto;
  display: block;
  transition: transform var(--transition-fast);
}

.nav-logo:hover .site-logo {
  transform: scale(1.05);
}

.footer-brand .site-logo {
  height: 64px;
  margin-bottom: 8px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-logo-tagline {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

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

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--accent);
  transition: transform var(--transition-fast);
  border-radius: 2px;
}

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

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

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary) !important;
  font-weight: 700 !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  box-shadow: var(--glow-gold);
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.6) !important;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

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

/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.4s ease, transform 7s ease;
  transform: scale(1.04);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(6, 15, 30, 0.82) 0%,
      rgba(10, 31, 68, 0.6) 50%,
      rgba(6, 15, 30, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
  width: fit-content;
  animation: fadeInDown 0.8s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

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

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.9s 0.2s ease both;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
  animation: fadeInUp 0.9s 0.4s ease both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.6s ease both;
}

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.hero-dot.active {
  background: var(--accent);
  box-shadow: var(--glow-gold);
  width: 24px;
  border-radius: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  z-index: 10;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scroll-line 2s infinite;
}

@keyframes scroll-line {
  0% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }

  100% {
    opacity: 0;
    transform: scaleY(0.3) translateY(20px);
  }
}

/* ─────────────────────────────────────────
   STATS RIBBON
───────────────────────────────────────── */
.stats-ribbon {
  position: relative;
  z-index: 5;
  background: rgba(6, 15, 30, 0.95);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 32px 0;
  backdrop-filter: blur(20px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────── */
#about {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.about-bg-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.about-glass-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 64px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  text-align: center;
  position: relative;
  box-shadow: var(--glow-gold);
}

.about-glass-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), transparent 40%, rgba(212, 175, 55, 0.15));
  -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;
  padding: 1px;
  pointer-events: none;
}

.about-image-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow: var(--glow-gold);
}

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

.about-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 48px;
}

.about-locations {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.location-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.location-badge:hover {
  background: rgba(212, 175, 55, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

.location-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   DIVISIONS SECTION
───────────────────────────────────────── */
#divisions {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-label {
  justify-content: center;
}

.section-header .section-label::before {
  display: none;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.division-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-mid);
}

.division-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--div-color-a, transparent), var(--div-color-b, transparent));
  opacity: 0;
  transition: opacity var(--transition-mid);
  border-radius: inherit;
}

.division-card:hover {
  transform: translateY(-12px);
  border-color: var(--div-border, rgba(255, 255, 255, 0.2));
}

.division-card:hover::before {
  opacity: 0.08;
}

.division-card .card-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--div-glow, transparent);
  opacity: 0;
  transition: opacity var(--transition-mid);
  filter: blur(40px);
  pointer-events: none;
}

.division-card:hover .card-glow {
  opacity: 1;
}

/* Division Theming */
.div-furniture {
  --div-color-a: rgba(200, 137, 74, 0.15);
  --div-color-b: rgba(245, 233, 211, 0.05);
  --div-border: rgba(200, 137, 74, 0.5);
  --div-glow: rgba(200, 137, 74, 0.4);
}

.div-dairy {
  --div-color-a: rgba(0, 230, 118, 0.12);
  --div-color-b: rgba(0, 230, 118, 0.03);
  --div-border: rgba(0, 230, 118, 0.4);
  --div-glow: rgba(0, 230, 118, 0.4);
}

.div-metal {
  --div-color-a: rgba(176, 190, 197, 0.12);
  --div-color-b: rgba(38, 50, 56, 0.1);
  --div-border: rgba(176, 190, 197, 0.4);
  --div-glow: rgba(176, 190, 197, 0.4);
}

.div-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-mid);
  position: relative;
  z-index: 1;
}

.div-furniture .div-icon {
  background: rgba(200, 137, 74, 0.15);
  border-color: rgba(200, 137, 74, 0.3);
}

.div-dairy .div-icon {
  background: rgba(0, 230, 118, 0.12);
  border-color: rgba(0, 230, 118, 0.3);
}

.div-metal .div-icon {
  background: rgba(176, 190, 197, 0.12);
  border-color: rgba(176, 190, 197, 0.3);
}

.division-card:hover .div-icon {
  transform: scale(1.1) rotate(5deg);
}

.division-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.division-card p {
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.div-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: gap var(--transition-fast);
  position: relative;
  z-index: 1;
}

.div-furniture .div-arrow {
  color: var(--furniture-warm);
}

.div-dairy .div-arrow {
  color: var(--dairy-green);
}

.div-metal .div-arrow {
  color: var(--metal-silver);
}

.division-card:hover .div-arrow {
  gap: 16px;
}

/* ─────────────────────────────────────────
   FURNITURE SHOWROOM
───────────────────────────────────────── */
#furniture {
  padding: var(--section-padding);
  background: linear-gradient(180deg, var(--dark) 0%, rgba(15, 25, 50, 0.95) 100%);
  position: relative;
}

.furniture-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200, 137, 74, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.showrooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}

.showroom-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(200, 137, 74, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-mid);
}

.showroom-card:hover {
  border-color: rgba(200, 137, 74, 0.5);
  box-shadow: 0 0 40px rgba(200, 137, 74, 0.15);
}

.showroom-header {
  padding: 24px 28px;
  background: rgba(200, 137, 74, 0.08);
  border-bottom: 1px solid rgba(200, 137, 74, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
}

.showroom-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--furniture-warm);
  box-shadow: 0 0 10px rgba(200, 137, 74, 0.6);
}

.showroom-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--furniture-warm);
}

.showroom-slider {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.9s ease;
  overflow: hidden;
}

.slider-img.active {
  opacity: 1;
}

.slider-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.slider-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.slider-dot.active {
  background: var(--furniture-warm);
  width: 18px;
  border-radius: 3px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.slider-nav:hover {
  background: rgba(200, 137, 74, 0.5);
  border-color: var(--furniture-warm);
}

.slider-nav-prev {
  left: 12px;
}

.slider-nav-next {
  right: 12px;
}

/* ─────────────────────────────────────────
   DAIRY SECTION
───────────────────────────────────────── */
#dairy {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.dairy-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.04), transparent 60%);
  pointer-events: none;
}

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

.dairy-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 230, 118, 0.2);
  box-shadow: 0 0 60px rgba(0, 230, 118, 0.08);
}

.dairy-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dairy-image-wrapper:hover img {
  transform: scale(1.04);
}

.dairy-glow-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(0, 230, 118, 0.15);
  border: 1px solid rgba(0, 230, 118, 0.4);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  color: var(--dairy-green);
  font-weight: 600;
  backdrop-filter: blur(10px);
  letter-spacing: 0.05em;
}

.dairy-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
}

.dairy-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.dairy-feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.dairy-feature:hover .dairy-feature-icon {
  background: rgba(0, 230, 118, 0.2);
  box-shadow: var(--glow-green);
  transform: scale(1.1);
}

.dairy-feature h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.dairy-feature p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   DAIRY FARM SLIDER & SHOP
───────────────────────────────────────── */
.dairy-farm-slider-wrap {
  position: relative;
  margin-top: 56px;
  margin-bottom: 0;
}

.dairy-farm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.35);
  border-radius: 50px;
  color: var(--dairy-green);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.farm-slider {
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 230, 118, 0.2);
  box-shadow: 0 0 40px rgba(0, 230, 118, 0.08);
  background: #060F1E;
}

/* Show full farm photo without cropping */
.farm-slider .slider-img img {
  object-fit: contain;
  object-position: center center;
  background: #060F1E;
}

.shop-image-box {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(0, 230, 118, 0.25);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.1);
  margin-bottom: 20px;
  background: #060F1E;
}

.shop-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.shop-image-box:hover img {
  transform: scale(1.05);
}

.shop-image-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 230, 118, 0.3);
  color: var(--dairy-green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 50px;
}

.dairy-shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dairy-product-card {
  background: rgba(0, 230, 118, 0.05);
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: all var(--transition-fast);
  cursor: default;
}

.dairy-product-card:hover {
  background: rgba(0, 230, 118, 0.1);
  border-color: rgba(0, 230, 118, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--glow-green);
}

.dairy-product-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.dairy-product-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.dairy-product-card p {
  font-size: 0.8rem;
  color: var(--gray-300);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   METAL WORKS SECTION
───────────────────────────────────────── */
#metalworks {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(10, 20, 40, 0.6) 30%, rgba(10, 20, 40, 0.6) 70%, transparent);
}

.metal-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(176, 190, 197, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
  pointer-events: none;
}

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

.metal-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(176, 190, 197, 0.2);
  order: 2;
}

.metal-image-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: contrast(1.1) saturate(0.9);
}

.metal-image-wrapper:hover img {
  transform: scale(1.04);
}

.metal-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(176, 190, 197, 0.08) 60%, transparent 80%);
  pointer-events: none;
}

.metal-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.metal-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 24px;
  background: rgba(176, 190, 197, 0.05);
  border: 1px solid rgba(176, 190, 197, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.metal-feature:hover {
  background: rgba(176, 190, 197, 0.1);
  border-color: rgba(176, 190, 197, 0.3);
  transform: translateX(8px);
  box-shadow: var(--glow-silver);
}

.metal-feature-icon {
  font-size: 1.5rem;
  width: 44px;
  text-align: center;
  flex-shrink: 0;
}

.metal-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.metal-feature p {
  font-size: 0.85rem;
  color: var(--gray-300);
}

/* ─────────────────────────────────────────
   TEAM SECTION
───────────────────────────────────────── */
#team {
  padding: var(--section-padding);
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 64px;
}

.team-card {
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-mid);
  cursor: default;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--accent);
  box-shadow: var(--glow-gold);
}

.team-avatar {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  border: 3px solid rgba(212, 175, 55, 0.3);
  transition: all var(--transition-mid);
  background: linear-gradient(135deg, var(--primary-light), var(--gray-700));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
}

/* Animated SVG Avatars */
.avatar-svg {
  width: 80%;
  height: 80%;
  margin: auto;
  display: block;
  animation: avatarFloat 4s ease-in-out infinite;
}

.avatar-female {
  color: #e8a4c8;
  background: radial-gradient(circle at 40% 30%, rgba(232, 164, 200, 0.18), rgba(212, 175, 55, 0.08));
  border-color: rgba(232, 164, 200, 0.4);
}

.avatar-female .avatar-svg {
  animation: avatarFloat 3.8s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(232, 164, 200, 0.5));
}

.avatar-male {
  color: #7ecff5;
  background: radial-gradient(circle at 40% 30%, rgba(126, 207, 245, 0.15), rgba(10, 31, 68, 0.3));
  border-color: rgba(126, 207, 245, 0.35);
}

.avatar-male .avatar-svg {
  animation: avatarFloat 4.2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(126, 207, 245, 0.45));
}

.team-card:hover .avatar-svg {
  animation-play-state: paused;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.7)) !important;
}

@keyframes avatarFloat {

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

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



.team-card:hover .team-avatar {
  border-color: var(--accent);
  box-shadow: var(--glow-gold);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.team-title {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-dept {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.team-dept-badge {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-gm {
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-furniture {
  background: rgba(200, 137, 74, 0.15);
  color: var(--furniture-warm);
  border: 1px solid rgba(200, 137, 74, 0.3);
}

.badge-dairy {
  background: rgba(0, 230, 118, 0.12);
  color: var(--dairy-green);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.badge-metal {
  background: rgba(176, 190, 197, 0.12);
  color: var(--metal-silver);
  border: 1px solid rgba(176, 190, 197, 0.3);
}

/* ─────────────────────────────────────────
   CAREERS SECTION
───────────────────────────────────────── */
#careers {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.careers-inner {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(10, 31, 68, 0.4));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.careers-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.careers-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(10, 31, 68, 0.5) 0%, transparent 70%);
  pointer-events: none;
}

.careers-inner .section-label {
  justify-content: center;
}

.careers-inner .section-label::before {
  display: none;
}

.careers-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.careers-title span {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.careers-desc {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.careers-inner .btn {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  padding: 16px 44px;
}

/* ─────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────── */
#contact {
  padding: var(--section-padding);
  position: relative;
}

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

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.contact-info>p {
  color: var(--gray-300);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--glass-bg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact-item:hover {
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.05);
  transform: translateX(6px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 4px;
}

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

.contact-map-placeholder {
  margin-top: 24px;
  height: 160px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 0.9rem;
  overflow: hidden;
  position: relative;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 48px;
  backdrop-filter: var(--glass-blur);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 32px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

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

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: rgba(4, 10, 22, 0.98);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  padding: 72px 0 32px;
}

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

.footer-brand p {
  color: var(--gray-300);
  font-size: 0.9rem;
  line-height: 1.75;
  margin: 20px 0 28px;
  max-width: 280px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.social-btn:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

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

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

.footer-dividers {
  display: flex;
  gap: 24px;
}

.footer-dividers a {
  font-size: 0.82rem;
  color: var(--gray-500);
  transition: color var(--transition-fast);
}

.footer-dividers a:hover {
  color: var(--gray-300);
}

/* ─────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ─────────────────────────────────────────
   UTILITY ANIMATIONS
───────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes float {

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

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

/* ─────────────────────────────────────────
   CUSTOM SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--accent-dark);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .divisions-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {

  .dairy-grid,
  .metal-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metal-image-wrapper {
    order: 0;
  }

  .careers-inner {
    padding: 60px 32px;
  }
}

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

  .container {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

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

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

  .about-glass-card {
    padding: 36px 24px;
  }

  .hero-title {
    font-size: 2.6rem;
  }
}

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

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile nav open state */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 15, 30, 0.97);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  gap: 28px;
  z-index: 999;
}

.nav-links.open a {
  font-size: 1.5rem;
  padding: 12px 24px;
}

.nav-close {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: white;
  font-size: 1.4rem;
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-links.open~.nav-close,
.nav-close.visible {
  display: flex;
}