:root {
  --bg: #f5f3f0;
  --bg-alt: #ffffff;
  --bg-deep: #121212;
  --primary: #1f2c24;
  --accent: #c4935c;
  --accent-soft: #f4e2ce;
  --accent-dark: #8b6336;
  --text: #2c2c2c;
  --muted: #6f6f6f;
  --border: #e1ded8;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 60px rgba(31, 44, 36, 0.12);
  --transition-fast: 200ms ease-out;
  --transition-med: 320ms ease-out;
  --nav-height: 74px;
}

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

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #faf8f6 0%, #fff5f0 50%, #faf8f6 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom,
      rgba(245, 243, 240, 0.96),
      rgba(255, 248, 240, 0.92));
  border-bottom: 1px solid rgba(31, 44, 36, 0.15);
  transition: background var(--transition-med), box-shadow var(--transition-med), transform var(--transition-med);
}

header.header-scrolled {
  background: linear-gradient(to bottom, rgba(245, 243, 240, 0.98), rgba(255, 248, 240, 0.95));
  color: var(--text);
  box-shadow: 0 8px 24px rgba(31, 44, 36, 0.12);
}

.header-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(31, 44, 36, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: transform 300ms ease-out, box-shadow 300ms ease-out;
}

.logo-img:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 18px 48px rgba(31, 44, 36, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  align-items: flex-start;
}

.logo-brand {
  height: 32px;
  width: auto;
  max-width: 150px;
  margin-bottom: 0;
  margin-top: auto;
  object-fit: contain;
  transition: transform 300ms ease-out;
}

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

.logo-text span:first-child {
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.logo-text span:last-child {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

header.header-scrolled .logo-text span:last-child {
  color: #d7d1c9;
}

.logo-text span:last-child {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.9rem;
}

nav a {
  position: relative;
  color: var(--muted);
  padding-bottom: 0.18rem;
  transition: color var(--transition-fast);
}

header.header-scrolled nav a {
  color: var(--text);
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transition: width var(--transition-fast);
}

nav a:hover {
  color: var(--text);
}

header.header-scrolled nav a:hover {
  color: var(--primary);
}

nav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.btn {
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  padding: 0.65rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
  white-space: nowrap;
}

.btn span.icon {
  font-size: 1.1rem;
  line-height: 1;
}

.btn-primary {
  background: linear-gradient(120deg, var(--primary), #0f1a14);
  color: #fff;
  box-shadow: 0 14px 36px rgba(31, 44, 36, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 52px rgba(31, 44, 36, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(47, 65, 53, 0.32);
  color: var(--primary);
}

.btn-outline:hover {
  background: rgba(47, 65, 53, 0.06);
}

header.header-scrolled .btn-outline {
  border-color: rgba(31, 44, 36, 0.3);
  color: var(--primary);
}

header.header-scrolled .btn-outline:hover {
  background: rgba(31, 44, 36, 0.06);
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(31, 44, 36, 0.25);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(31, 44, 36, 0.08);
  transition: all var(--transition-fast);
}

header.header-scrolled .nav-toggle {
  border-color: rgba(31, 44, 36, 0.3);
  background: rgba(31, 44, 36, 0.1);
}

.nav-toggle-line {
  width: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--primary);
  position: relative;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  background: inherit;
  border-radius: inherit;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.nav-toggle-line::before {
  top: -5px;
}

.nav-toggle-line::after {
  top: 5px;
}

/* Hero */
.hero {
  padding: 3.1rem 0 2.7rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  background: rgba(196, 147, 92, 0.08);
  color: var(--accent-dark);
  font-size: 0.73rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1.2rem;
}

.eyebrow-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #28b67a;
  box-shadow: 0 0 0 6px rgba(40, 182, 122, 0.18);
}

.hero-title {
  font-size: clamp(2.8rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
  color: var(--primary);
  font-weight: 700;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  padding: 0 0.12em;
  z-index: 1;
  background: linear-gradient(120deg, var(--primary), #000a06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.hero-subtitle {
  color: var(--muted);
  max-width: 520px;
  font-size: 1.08rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 400;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-badges strong {
  color: var(--primary);
  font-weight: 600;
}

.hero-badge-separator {
  width: 1px;
  height: 26px;
  background: rgba(111, 111, 111, 0.32);
}

.hero-media-wrap {
  position: relative;
  perspective: 1200px;
}

.hero-orbit {
  position: absolute;
  top: -16px;
  right: -18px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px dashed rgba(196, 147, 92, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-dark);
  background: radial-gradient(circle at 30% 10%, rgba(255, 255, 255, 0.95), rgba(245, 243, 240, 0.4));
  backdrop-filter: blur(8px);
  animation: orbitRotate 16s linear infinite;
}

.hero-card {
  background: radial-gradient(circle at 0 0, #fffbf5, #fef5eb, #fceae0);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.3rem 1.7rem;
  box-shadow: var(--shadow-soft), 0 0 30px rgba(31, 44, 36, 0.15);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(0deg);
  transition: transform 400ms ease-out, box-shadow 400ms ease-out, opacity var(--transition-med);
}

.hero-card:hover {
  box-shadow: var(--shadow-soft), 0 0 60px rgba(31, 44, 36, 0.35);
  animation: glowPulse 2s ease-in-out;
}

.hero-card-tag {
  position: absolute;
  top: 1.3rem;
  left: 1.4rem;
  background: rgba(245, 243, 240, 0.95);
  border-radius: 999px;
  font-size: 0.76rem;
  padding: 0.2rem 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-card-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #28b67a;
}

.hero-chair-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: radial-gradient(circle at 8% 0%, #f8eee2, #dfcfbd);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  aspect-ratio: 3 / 4;
  position: relative;
}

/* Hero Video */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  display: block;
  transition: transform 0.4s ease;
}

.hero-card:hover .hero-video {
  transform: scale(1.03);
}



.hero-stats {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-avatar-stack {
  display: flex;
  align-items: center;
}

.hero-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d3c2aa;
  border: 2px solid #fff;
  margin-left: -8px;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-rating {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hero-rating span:first-child {
  font-weight: 500;
  color: var(--primary);
}

/* Sections */
.section {
  padding: 2.2rem 0 2.7rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.4rem;
  margin-bottom: 1.4rem;
}

.section-title {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 380px;
  line-height: 1.5;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
}

.pill {
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  background: rgba(47, 65, 53, 0.05);
  color: var(--muted);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.pill.active {
  background: var(--primary);
  color: #fff;
  transform: translateY(-1px);
}

.pill:hover:not(.active) {
  background: rgba(47, 65, 53, 0.08);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.category-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-height: 450px;
  transition: transform var(--transition-med), box-shadow var(--transition-med), background var(--transition-med), opacity var(--transition-med);
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.9), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-med);
  pointer-events: none;
}

.category-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
  flex-shrink: 0;
  background: #f8f6f4;
}

.category-card:hover {
  transform: translateY(-5px) translateZ(0);
  box-shadow: 0 22px 58px rgba(31, 44, 36, 0.12);
  background: #fdfbf8;
  opacity: 0.92;
}

.category-card:hover::before {
  opacity: 1;
}

.category-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.category-name {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.category-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: auto;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.category-chip {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 500;
  font-size: 0.75rem;
}

/* ============================================
   PREMIUM CATEGORY SHOWCASE
   ============================================ */
.category-showcase {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.category-showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
}

.category-showcase-reverse .category-showcase-inner {
  direction: rtl;
}

.category-showcase-reverse .category-showcase-content {
  direction: ltr;
}

.category-hero-image {
  position: relative;
  overflow: hidden;
}

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

.category-showcase:hover .category-hero-image img {
  transform: scale(1.03);
}

.category-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 44, 36, 0.1), transparent);
  pointer-events: none;
}

.category-showcase-content {
  background: linear-gradient(145deg, #fdfbf7, #f7f5f0);
  padding: 3.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.category-showcase-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.category-number {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.category-showcase-title {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.2;
  margin: 0;
}

.category-showcase-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 420px;
}

.category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.category-link {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(225, 222, 216, 0.8);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(31, 44, 36, 0.05);
}

.category-link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 44, 36, 0.15);
}

.category-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-decoration: none;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.category-cta span {
  transition: transform 0.3s ease;
}

.category-cta:hover {
  color: var(--primary);
}

.category-cta:hover span {
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .category-showcase-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .category-showcase-reverse .category-showcase-inner {
    direction: ltr;
  }

  .category-hero-image {
    height: 350px;
  }

  .category-showcase-content {
    padding: 2.5rem 2rem;
  }

  .category-showcase-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 600px) {
  .category-hero-image {
    height: 280px;
  }

  .category-showcase-content {
    padding: 2rem 1.5rem;
  }

  .category-showcase-title {
    font-size: 1.5rem;
  }

  .category-link {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* ============================================
   INTRO SECTION - FULLSCREEN HERO REVEAL
   ============================================ */
.intro-section {
  position: relative;
  overflow: hidden;
  /* Ensure it has height before animation */
  min-height: 100vh;
}

/* Fullscreen Hero Intro */
.intro-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.5s cubic-bezier(0.7, 0, 0.3, 1), opacity 1.5s ease;
}

/* Triggered State: Slide Up - FASTER */
.intro-section.in-view .intro-hero {
  transform: translateY(-100%);
  opacity: 0;
  transition-delay: 1.5s;
  /* Reduced from 2.5s */
  pointer-events: none;
}

.intro-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  /* Subtle zoom start */
  transition: transform 2.5s ease-out;
  /* Slightly faster zoom */
}

.intro-section.in-view .intro-hero-img {
  transform: scale(1);
  /* Zoom out effect */
}

.intro-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.intro-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease-out;
}

.intro-section.in-view .intro-hero-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
  /* Faster fade in content */
}

/* Hero Text Styles - PREMIUM TYPOGRAPHY */
.intro-hero-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.intro-hero-content p {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
}

/* Premium Cards Section */
.intro-premium {
  background: radial-gradient(circle at 50% 0%, #fffbf2 0%, #f7f3eb 100%);
  padding: 6rem 0;
  min-height: 100vh;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s ease-out;
}

/* Reveal premium section after hero leaves - FASTER */
.intro-section.in-view .intro-premium {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.8s;
  /* Sync with hero slide up (reduced from 2.8s) */
}

.intro-premium-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.intro-premium-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
  background: linear-gradient(90deg, var(--primary) 0%, #4a3b2a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  /* standard property */
  -webkit-text-fill-color: transparent;
}

.intro-premium-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f3e5ab, #d4af37);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

/* Cards Grid - Super Premium Styles */
.intro-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  perspective: 1000px;
}

.intro-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  text-decoration: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Initial Stagger State */
  opacity: 0;
  transform: translateY(30px);
}

/* Staggered Animation on In-View */
.intro-section.in-view .intro-card {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays - FASTER SEQUENCE */
.intro-section.in-view .intro-card:nth-child(1) {
  transition-delay: 2.0s;
}

.intro-section.in-view .intro-card:nth-child(2) {
  transition-delay: 2.1s;
}

.intro-section.in-view .intro-card:nth-child(3) {
  transition-delay: 2.2s;
}

.intro-section.in-view .intro-card:nth-child(4) {
  transition-delay: 2.3s;
}

.intro-section.in-view .intro-card:nth-child(5) {
  transition-delay: 2.4s;
}

.intro-section.in-view .intro-card:nth-child(6) {
  transition-delay: 2.5s;
}

.intro-section.in-view .intro-card:nth-child(7) {
  transition-delay: 2.6s;
}

/* Premium Hover Effects */
.intro-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 2px;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.6), transparent);
  -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);
  /* standard property */
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  /* standard property */
  opacity: 0;
  transition: opacity 0.5s ease;
}


.intro-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1), 0 0 30px rgba(212, 175, 55, 0.15);
}

.intro-card:hover::before {
  opacity: 1;
}

.intro-card-img {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}

.intro-card:hover .intro-card-img img {
  transform: scale(1.15) rotate(2deg);
  filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
}

.intro-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  /* Use serif if available, else standard */
}

.intro-card p {
  font-size: 0.95rem;
  color: #888;
  letter-spacing: 0.02em;
}


@media (max-width: 768px) {
  .intro-premium {
    padding: 3rem 0;
    min-height: auto;
  }

  .intro-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .intro-card-img {
    height: 120px;
  }
}

/* ============================================
   SPLIT SECTION - SIDE BY SIDE LAYOUT
   ============================================ */

.split-section {
  overflow: hidden;
}

.split-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 100vh;
}

.split-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem;
}

.split-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(31, 44, 36, 0.9) 0%,
      rgba(31, 44, 36, 0.75) 100%);
}

.split-hero-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.split-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.split-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.split-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.split-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.split-links a:hover {
  background: rgba(180, 142, 73, 0.2);
  border-color: var(--accent);
  color: var(--accent);
}

.split-cta {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(180, 142, 73, 0.3);
}

.split-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(180, 142, 73, 0.4);
}

/* Right Side - Cards with Delayed Animation */
.split-cards {
  background: linear-gradient(180deg, #fdfcfa 0%, #f9f7f4 100%);
  padding: 3rem;
  display: flex;
  align-items: center;
  /* Animation: slide in from right after 2 seconds */
  opacity: 0;
  transform: translateX(100px);
  animation: slideInCards 0.8s ease-out 2s forwards;
}

@keyframes slideInCards {
  from {
    opacity: 0;
    transform: translateX(100px);
  }

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

/* Hero content fades in immediately */
.split-hero-content {
  position: relative;
  z-index: 2;
  max-width: 400px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInHero 0.8s ease-out 0.3s forwards;
}

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

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


.split-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.split-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 5px 25px rgba(31, 44, 36, 0.06);
  border: 1px solid rgba(225, 222, 216, 0.5);
  transition: all 0.4s ease;
}

.split-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 50px rgba(31, 44, 36, 0.12),
    0 0 30px rgba(180, 142, 73, 0.08);
  border-color: var(--accent);
}

.split-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.split-card-img img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.split-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.3rem;
}

.split-card p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.intro-card h3 {
  font-family: 'Playfair Display', serif;
  /* Use serif for premium feel */
  font-size: 1.15rem;
  font-weight: 600;
  color: #1f2c24;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.intro-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b48e49;
  /* Gold accent color */
  margin: 0;
}


@media (max-width: 1024px) {
  .split-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .split-hero {
    min-height: 50vh;
    padding: 3rem 2rem;
  }

  .split-cards {
    padding: 2rem;
  }

  .split-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .split-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .split-card-img {
    height: 100px;
  }
}

/* ============================================
   COMBINED SECTION - V2 DESIGN
   ============================================ */

.combined-section {
  position: relative;
  overflow: hidden;
}

.combined-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  min-height: 350px;
}

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

.combined-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(31, 44, 36, 0.88) 0%,
      rgba(31, 44, 36, 0.75) 50%,
      rgba(31, 44, 36, 0.95) 100%);
}

.combined-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.combined-header {
  text-align: center;
  margin-bottom: 4rem;
}

.combined-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.combined-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Quick Links (Tables style) */
.combined-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.combined-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.combined-link:hover {
  background: rgba(180, 142, 73, 0.2);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.combined-cta {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(180, 142, 73, 0.3);
}

.combined-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(180, 142, 73, 0.4);
}

/* Floating Cards Grid */
.combined-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.combined-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 40px rgba(31, 44, 36, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.combined-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 25px 60px rgba(31, 44, 36, 0.2),
    0 0 30px rgba(180, 142, 73, 0.1);
}

.combined-card-img {
  height: 180px;
  background: linear-gradient(160deg, #fafafa 0%, #f3f2f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.combined-card-img img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.combined-card-info {
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: #fff;
}

.combined-card-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.combined-card-info p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .combined-hero-bg {
    height: 50%;
  }

  .combined-content {
    padding: 3rem 0;
  }

  .combined-title {
    font-size: 2rem;
  }

  .combined-links {
    gap: 0.5rem;
  }

  .combined-link {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

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

  .combined-card-img {
    height: 140px;
  }
}

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

/* ============================================
   HYBRID SECTION - HERO + CARDS COMBINED
   ============================================ */

.hybrid-section {
  background: linear-gradient(180deg, #fdfcfa 0%, #f9f7f4 100%);
}

/* Hero Banner */
.hybrid-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  max-height: 550px;
  overflow: hidden;
}

.hybrid-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hybrid-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(31, 44, 36, 0.85) 0%,
      rgba(31, 44, 36, 0.6) 50%,
      rgba(31, 44, 36, 0.75) 100%);
}

.hybrid-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}

.hybrid-hero-text {
  max-width: 650px;
}

.hybrid-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hybrid-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin: 0 0 2rem;
}

.hybrid-cta {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(180, 142, 73, 0.3);
}

.hybrid-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(180, 142, 73, 0.4);
}

/* Cards Section */
.hybrid-cards {
  padding: 4rem 0 5rem;
  position: relative;
}

/* Animated shimmer */
.hybrid-cards::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(180, 142, 73, 0.03) 25%,
      rgba(180, 142, 73, 0.06) 50%,
      rgba(180, 142, 73, 0.03) 75%,
      transparent 100%);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

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

.hybrid-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(31, 44, 36, 0.06);
  border: 1px solid rgba(225, 222, 216, 0.6);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hybrid-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 30px 70px rgba(31, 44, 36, 0.15),
    0 0 40px rgba(180, 142, 73, 0.1);
  border-color: var(--accent);
}

.hybrid-card-img {
  height: 260px;
  background: linear-gradient(160deg, #fafafa 0%, #f3f2f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.hybrid-card-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.hybrid-card-info {
  padding: 1.5rem 1.75rem 1.75rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.hybrid-card-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.6rem;
  line-height: 1.3;
}

.hybrid-card-info p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 1rem;
  flex-grow: 1;
}

.hybrid-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.hybrid-card:hover .hybrid-link {
  color: var(--primary);
}

@media (max-width: 768px) {
  .hybrid-hero {
    height: 40vh;
    min-height: 320px;
  }

  .hybrid-title {
    font-size: 2rem;
  }

  .hybrid-desc {
    font-size: 1rem;
  }

  .hybrid-cards {
    padding: 3rem 0 4rem;
  }

  .hybrid-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hybrid-card-img {
    height: 200px;
  }
}

/* ============================================
   ELEGANT SECTION - LIGHT PREMIUM DESIGN
   ============================================ */

.elegant-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fdfcfa 0%, #f9f7f4 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background shimmer */
.elegant-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(180, 142, 73, 0.03) 25%,
      rgba(180, 142, 73, 0.06) 50%,
      rgba(180, 142, 73, 0.03) 75%,
      transparent 100%);
  animation: shimmer 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {

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

  50% {
    transform: translateX(25%);
  }
}

.elegant-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  position: relative;
}

/* Decorative animated line */
.elegant-decor {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #d4b46a, var(--accent));
  background-size: 200% 100%;
  border-radius: 2px;
  margin: 0 auto 2rem;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {

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

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

.elegant-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.elegant-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 2.5rem;
}

.elegant-cta {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, #2a3b32 100%);
  text-decoration: none;
  padding: 1.1rem 2.8rem;
  border-radius: var(--radius-pill);
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(31, 44, 36, 0.2);
  position: relative;
  overflow: hidden;
}

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

.elegant-cta:hover::before {
  left: 100%;
}

.elegant-cta:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(31, 44, 36, 0.3);
}


/* Elegant Card Grid */
.elegant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.elegant-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 30px rgba(31, 44, 36, 0.06);
  border: 1px solid rgba(225, 222, 216, 0.6);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.elegant-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 30px 70px rgba(31, 44, 36, 0.15),
    0 0 40px rgba(180, 142, 73, 0.1);
  border-color: var(--accent);
}


.elegant-img {
  height: 280px;
  background: linear-gradient(160deg, #fafafa 0%, #f3f2f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.elegant-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

.elegant-info {
  padding: 1.75rem 2rem 2rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.elegant-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.elegant-info p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}

.elegant-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
}

.elegant-card:hover .elegant-link {
  color: var(--primary);
}

@media (max-width: 768px) {
  .elegant-section {
    padding: 4rem 0;
  }

  .elegant-header {
    margin-bottom: 3rem;
  }

  .elegant-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .elegant-img {
    height: 220px;
  }

  .elegant-title {
    font-size: 2rem;
  }
}

/* ============================================
   SPOTLIGHT SECTION - SPLIT PANEL DESIGN
   ============================================ */

.spotlight-section {
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f2ed 100%);
  padding: 0;
  overflow: hidden;
}

.spotlight-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  min-height: 100vh;
}

.spotlight-content {
  background: var(--primary);
  padding: 4rem 3rem;
  display: flex;
  align-items: center;
}

.spotlight-sticky {
  position: sticky;
  top: 120px;
}

.spotlight-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.spotlight-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.spotlight-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0 0 2rem;
}

.spotlight-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.spotlight-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.spotlight-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(180, 142, 73, 0.3);
}

.spotlight-cta svg {
  transition: transform 0.3s ease;
}

.spotlight-cta:hover svg {
  transform: translateX(4px);
}

/* Gallery Grid */
.spotlight-gallery {
  padding: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(31, 44, 36, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item.gallery-large {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(31, 44, 36, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 44, 36, 0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.gallery-arrow {
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-arrow {
  transform: translateX(5px);
}

@media (max-width: 1200px) {
  .spotlight-wrapper {
    grid-template-columns: 350px 1fr;
  }

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

@media (max-width: 900px) {
  .spotlight-wrapper {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .spotlight-content {
    padding: 3rem 2rem;
  }

  .spotlight-sticky {
    position: static;
  }

  .spotlight-title {
    font-size: 2.5rem;
  }

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

  .gallery-item.gallery-large,
  .gallery-item.gallery-wide {
    grid-column: span 2;
  }
}

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

  .gallery-item.gallery-large,
  .gallery-item.gallery-wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  .spotlight-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }
}

/* ============================================
   WOW CATEGORY SECTION - EDITORIAL DESIGN
   ============================================ */

.wow-category-section {
  background: linear-gradient(165deg, #1f2c24 0%, #2a3b32 50%, #1f2c24 100%);
  position: relative;
  overflow: hidden;
}

.wow-category-header {
  padding: 5rem 0 3rem;
  position: relative;
}

.wow-header-content {
  max-width: 600px;
}

.wow-category-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
}

.wow-category-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.wow-category-title span {
  background: linear-gradient(135deg, var(--accent) 0%, #c9a45c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wow-category-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin: 0 0 2rem;
}

.wow-category-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  background: rgba(180, 142, 73, 0.15);
  border: 1px solid rgba(180, 142, 73, 0.4);
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
}

.wow-category-cta:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateX(5px);
}

.wow-category-cta svg {
  transition: transform 0.3s ease;
}

.wow-category-cta:hover svg {
  transform: translateX(4px);
}

/* Horizontal Scroll Container */
.wow-scroll-container {
  padding: 0 0 4rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.wow-scroll-container::-webkit-scrollbar {
  display: none;
}

.wow-scroll-container:active {
  cursor: grabbing;
}

.wow-scroll-track {
  display: flex;
  gap: 1.5rem;
  padding: 0 max(2rem, calc((100vw - 1200px) / 2));
  width: max-content;
}

.wow-scroll-card {
  flex-shrink: 0;
  width: 320px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wow-scroll-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(180, 142, 73, 0.4);
  transform: translateY(-10px);
}

.wow-card-visual {
  position: relative;
  height: 280px;
  background: linear-gradient(160deg, #f8f6f4 0%, #ebe8e4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}

.wow-card-visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.wow-scroll-card:hover .wow-card-visual img {
  transform: scale(1.1) rotate(-2deg);
}

.wow-card-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.05em;
}

.wow-card-content {
  padding: 1.5rem;
}

.wow-card-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.wow-card-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.wow-card-link {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  transition: transform 0.3s ease;
}

.wow-scroll-card:hover .wow-card-link {
  transform: translateX(5px);
}

/* Scroll Hint */
.wow-scroll-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 0 3rem;
  animation: float 2s ease-in-out infinite;
}

.wow-scroll-hint span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wow-scroll-hint svg {
  color: rgba(255, 255, 255, 0.4);
  animation: slideRight 1.5s ease-in-out infinite;
}

@keyframes float {

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

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

@keyframes slideRight {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.4;
  }

  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .wow-category-header {
    padding: 3rem 0 2rem;
  }

  .wow-category-title {
    font-size: 2.5rem;
  }

  .wow-scroll-card {
    width: 280px;
  }

  .wow-card-visual {
    height: 220px;
  }

  .wow-scroll-track {
    padding: 0 1.5rem;
  }
}

/* ============================================
   CLEAN SUBCATEGORY CARD GRID
   ============================================ */

.clean-subcat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.clean-subcat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(31, 44, 36, 0.06);
  border: 1px solid rgba(225, 222, 216, 0.5);
  transition: all 0.35s ease;
}

.clean-subcat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(31, 44, 36, 0.12);
  border-color: var(--accent);
}

.clean-subcat-img {
  height: 200px;
  background: linear-gradient(145deg, #fafaf9, #f5f4f2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.clean-subcat-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.clean-subcat-info {
  padding: 1.25rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(225, 222, 216, 0.4);
}

.clean-subcat-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.3rem;
  line-height: 1.3;
}

.clean-subcat-info span {
  font-size: 0.82rem;
  color: var(--muted);
}

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

@media (max-width: 768px) {
  .clean-subcat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .clean-subcat-img {
    height: 160px;
  }
}

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

/* ============================================
   PREMIUM CATEGORY SECTION WITH PHOTO GRID
   ============================================ */

.premium-category-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fdfbf7 0%, #f5f2ed 100%);
}

.premium-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.premium-header-content {
  max-width: 600px;
}

.premium-section-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding: 0.3rem 0.8rem;
  background: var(--accent-soft);
  border-radius: var(--radius-pill);
}

.premium-section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.15;
  margin: 0.5rem 0;
}

.premium-section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Premium Subcategory Grid - Bento Style */
.premium-subcategory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1.2rem;
}

.premium-subcat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.premium-subcat-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.premium-subcat-image {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #f8f6f4, #ebe7e3);
}

.premium-subcat-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
  padding: 1rem;
}

.premium-subcat-card:hover .premium-subcat-image img {
  transform: scale(1.08);
}

.premium-subcat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(31, 44, 36, 0.85) 0%, rgba(31, 44, 36, 0.3) 40%, transparent 70%);
  transition: opacity 0.3s ease;
}

.premium-subcat-card:hover .premium-subcat-overlay {
  background: linear-gradient(to top, rgba(31, 44, 36, 0.95) 0%, rgba(31, 44, 36, 0.4) 50%, transparent 80%);
}

.premium-subcat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(5px);
  transition: transform 0.3s ease;
}

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

.premium-subcat-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.premium-subcat-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.premium-subcat-featured .premium-subcat-name {
  font-size: 1.4rem;
}

.premium-subcat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .premium-subcategory-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }

  .premium-subcat-card {
    min-height: 260px;
  }

  .premium-subcat-featured {
    grid-column: span 3;
    grid-row: span 1;
    min-height: 320px;
  }

  .premium-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .premium-category-section {
    padding: 3rem 0;
  }

  .premium-section-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .premium-subcat-featured {
    grid-column: span 2;
  }

  .premium-subcat-card {
    min-height: 220px;
  }

  .premium-section-title {
    font-size: 1.75rem;
  }
}

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

  .premium-subcat-featured {
    grid-column: span 1;
  }
}

/* ============================================
   SUBCATEGORY GRID & CARDS
   ============================================ */


.subcategory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.subcategory-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subcategory-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(31, 44, 36, 0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.subcategory-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(31, 44, 36, 0.14);
}

.subcategory-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(145deg, #f8f6f4, #ebe7e3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.subcategory-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.subcategory-info {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.subcategory-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  line-height: 1.3;
}

.subcategory-tag {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .subcategory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subcategory-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  .subcategory-grid,
  .subcategory-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subcategory-image {
    height: 160px;
  }
}

@media (max-width: 480px) {

  .subcategory-grid,
  .subcategory-grid-3 {
    grid-template-columns: 1fr;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.product-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: 0 12px 34px rgba(31, 44, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med), opacity var(--transition-med);
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 60px rgba(31, 44, 36, 0.2);
  opacity: 0.92;
}

.product-media {
  border-radius: 14px;
  background: radial-gradient(circle at 15% 0%, #f8efe5, #e4d5c3);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 280px;
}

.product-placeholder {
  width: 80%;
  aspect-ratio: 3/4;
  border-radius: 40% 40% 35% 35%;
  background: linear-gradient(160deg, #374a3a, #617b64);
  box-shadow: 0 18px 40px rgba(31, 44, 36, 0.35);
  position: relative;
  overflow: hidden;
}

.product-placeholder::before {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.55), transparent),
    radial-gradient(circle at 80% 90%, rgba(196, 147, 92, 0.9), transparent);
  mix-blend-mode: screen;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.product-name {
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--primary);
}

.product-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.product-price {
  font-weight: 600;
  color: var(--accent-dark);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 2.3rem;
  align-items: center;
}

.about-list {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(40, 182, 122, 0.08);
  border: 1px solid rgba(40, 182, 122, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: #28b67a;
  margin-top: 0.15rem;
}

.process-steps {
  display: grid;
  gap: 0.7rem;
  font-size: 0.83rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.step-index {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(47, 65, 53, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--primary);
  background: rgba(245, 243, 240, 0.8);
}

.clients-strip {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
}

.clients-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  color: var(--muted);
  text-align: center;
}

.clients-header span strong {
  color: var(--primary);
  font-size: 1.5rem;
}

.clients-track-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scrollClients 40s linear infinite;
  width: max-content;
}

.client-logo {
  min-width: 90px;
  height: 40px;
  border-radius: 999px;
  background: #f2ede5;
  border: 1px solid #e0d9cf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #8d7e6c;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.client-logo-img {
  min-width: 160px;
  max-width: 220px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  padding: 1rem;
  flex-shrink: 0;
  transition: transform 200ms ease-out, opacity 200ms ease-out, filter 200ms ease-out, box-shadow 200ms ease-out;
  filter: grayscale(30%);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(31, 44, 36, 0.1);
}

.client-logo-img:hover {
  transform: scale(1.12) translateY(-4px);
  opacity: 1;
  filter: grayscale(0%) brightness(1.1);
  box-shadow: 0 16px 40px rgba(31, 44, 36, 0.22);
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section {
  background: linear-gradient(180deg, rgba(245, 243, 240, 0.5) 0%, rgba(255, 255, 255, 1) 50%, rgba(245, 243, 240, 0.5) 100%);
  padding: 4rem 0;
}

.certifications-header-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.certifications-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: linear-gradient(135deg, rgba(196, 147, 92, 0.15), rgba(196, 147, 92, 0.05));
  border: 1px solid rgba(196, 147, 92, 0.3);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  color: var(--accent-dark);
  margin-bottom: 1rem;
}

.cert-badge-icon {
  font-size: 1.1rem;
}

.certifications-title {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.certifications-subtitle {
  font-size: 1rem;
  max-width: 100%;
  text-align: center;
  line-height: 1.6;
}

.certifications-subtitle strong {
  color: var(--primary);
  font-weight: 600;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cert-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f8f6f4);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.2rem;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(225, 222, 216, 0.8);
  box-shadow: 0 8px 32px rgba(31, 44, 36, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(31, 44, 36, 0.15);
  border-color: rgba(196, 147, 92, 0.5);
}

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

.cert-card:hover .cert-action {
  color: var(--accent-dark);
}

.cert-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(196, 147, 92, 0.1), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.cert-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary), #1a2b1f);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(31, 44, 36, 0.25);
}

.cert-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  line-height: 1.1;
}

.cert-icon span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.cert-icon strong {
  font-size: 1.4rem;
  font-weight: 700;
}

.cert-icon-bifma strong {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.cert-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cert-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.cert-description {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.cert-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.5rem;
}

.cert-company {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cert-action {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.3s ease;
}

/* Color variants */
.cert-card-green .cert-icon-wrapper {
  background: linear-gradient(145deg, #2d6a4f, #1b4332);
}

.cert-card-green:hover {
  border-color: rgba(45, 106, 79, 0.5);
}

.cert-card-green .cert-glow {
  background: radial-gradient(circle at center, rgba(45, 106, 79, 0.1), transparent 50%);
}

.cert-card-blue .cert-icon-wrapper {
  background: linear-gradient(145deg, #1e3a5f, #0d253f);
}

.cert-card-blue:hover {
  border-color: rgba(30, 58, 95, 0.5);
}

.cert-card-blue .cert-glow {
  background: radial-gradient(circle at center, rgba(30, 58, 95, 0.1), transparent 50%);
}

.cert-card-gold .cert-icon-wrapper {
  background: linear-gradient(145deg, #b8860b, #8b6914);
}

.cert-card-gold:hover {
  border-color: rgba(184, 134, 11, 0.5);
}

.cert-card-gold .cert-glow {
  background: radial-gradient(circle at center, rgba(184, 134, 11, 0.1), transparent 50%);
}

.certifications-footer {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(225, 222, 216, 0.6);
}

.certifications-footer p {
  font-size: 0.9rem;
  color: var(--muted);
}

.certifications-footer strong {
  color: var(--primary);
}

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

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

  .certifications-title {
    font-size: 1.5rem;
  }
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary), #0f1a14);
  border-radius: var(--radius-lg);
  padding: 1.7rem 1.7rem 1.8rem;
  color: #fdfbf7;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.15), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(42, 59, 51, 0.3), transparent 55%);
  opacity: 0.8;
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
  align-items: center;
}

.cta-badge {
  font-size: 0.78rem;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(249, 241, 230, 0.7);
  background: rgba(10, 10, 10, 0.42);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cta-title {
  font-size: 1.25rem;
  font-weight: 500;
  max-width: 360px;
}

.cta-subtitle {
  font-size: 0.88rem;
  color: rgba(244, 237, 231, 0.8);
  max-width: 380px;
}

footer {
  border-top: 1px solid rgba(225, 222, 216, 0.9);
  padding: 1.7rem 0 2rem;
  margin-top: 2.2rem;
  background: rgba(245, 243, 240, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 650ms ease-out, transform 650ms ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 650ms ease-out;
}

@keyframes orbitRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes scrollClients {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes glowPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(31, 44, 36, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(31, 44, 36, 0.4);
  }
}

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

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

/* Responsive */
@media (max-width: 960px) {

  .hero-grid,
  .why-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media-wrap {
    margin-top: 1.4rem;
    perspective: none;
  }

  .hero-orbit {
    animation: none;
    width: 80px;
    height: 80px;
    top: -8px;
    right: -4px;
    font-size: 0.55rem;
  }

  .hero-card {
    transform-style: flat;
    transform: none !important;
  }

  .hero-card-tag {
    position: relative;
    top: auto;
    left: auto;
    margin-bottom: 0.8rem;
    font-size: 0.68rem;
  }

  .hero-chair-frame img,
  .hero-chair-frame video {
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .hero-chair-frame {
    min-height: 280px;
    aspect-ratio: 3 / 4;
    max-height: 420px;
  }
}

@media (max-width: 1024px) {

  /* Fixed header for mobile */
  header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }

  /* Prevent content from being hidden behind fixed header */
  .page {
    padding-top: 74px;
  }

  /* Hide old nav element if exists */
  nav:not(.main-nav) {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   MEGA MENU STYLES
   ============================================ */

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(47, 65, 53, 0.06);
}

.nav-arrow {
  font-size: 0.6rem;
  opacity: 0.6;
  transition: transform var(--transition-fast);
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-link-simple {
  padding: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link-simple:hover {
  color: var(--primary);
  background: rgba(47, 65, 53, 0.06);
}

/* View All link inside mega-menu (mobile only) */
.mega-view-all {
  display: none;
}

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 680px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 248, 246, 0.98));
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  box-shadow:
    0 25px 80px rgba(31, 44, 36, 0.18),
    0 8px 24px rgba(31, 44, 36, 0.08),
    0 0 0 1px rgba(31, 44, 36, 0.06);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition:
    opacity var(--transition-med),
    visibility var(--transition-med),
    transform var(--transition-med);
  z-index: 100;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(255, 255, 255, 0.98);
  filter: drop-shadow(0 -2px 4px rgba(31, 44, 36, 0.06));
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-small {
  min-width: 440px;
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.mega-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.8rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(225, 222, 216, 0.6);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
}

a.mega-category-item {
  text-decoration: none;
  color: inherit;
}

.mega-category-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(31, 44, 36, 0.12);
  background: #fff;
  border-color: var(--accent);
}

.mega-category-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, #f8f6f4, #f0ebe5);
  transition: transform var(--transition-fast);
}

.mega-category-item:hover img {
  transform: scale(1.05);
}

.mega-category-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.3;
}

/* Scrolled header nav styles */
header.header-scrolled .nav-link {
  color: var(--text);
}

header.header-scrolled .nav-link:hover {
  color: var(--primary);
}

header.header-scrolled .nav-link-simple {
  color: var(--text);
}

header.header-scrolled .nav-link-simple:hover {
  color: var(--primary);
}

/* ============================================
   MOBILE NAVIGATION STYLES - REDESIGNED
   ============================================ */

/* Body scroll lock when nav is open */
body.nav-open {
  overflow: hidden;
}

/* Hamburger button styling - more visible */
.nav-toggle {
  background: var(--primary);
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 9999;
}

.nav-toggle .nav-toggle-line,
.nav-toggle .nav-toggle-line::before,
.nav-toggle .nav-toggle-line::after {
  background: #fff;
}

/* Hamburger animation to X */
.nav-toggle.active .nav-toggle-line {
  background: transparent;
}

.nav-toggle.active .nav-toggle-line::before {
  top: 0;
  transform: rotate(45deg);
  background: #fff;
}

.nav-toggle.active .nav-toggle-line::after {
  top: 0;
  transform: rotate(-45deg);
  background: #fff;
}

/* Mobile full-screen menu — PREMIUM REDESIGN v2 */
@media (max-width: 1024px) {
  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
    background: linear-gradient(170deg, #18291f 0%, #0e1a14 40%, #0a1410 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 90px 0 0;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.35s ease,
      visibility 0.35s ease;
    z-index: 9998;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.mobile-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border-radius: 0;
    letter-spacing: 0.03em;
    transition: all 0.25s ease;
    border-left: 3px solid transparent;
  }

  .nav-link:hover,
  .nav-link:active {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
  }

  /* Override scrolled-header grey on mobile — keep nav white */
  header.header-scrolled .nav-link {
    color: #fff;
  }

  header.header-scrolled .nav-link:hover,
  header.header-scrolled .nav-link:active {
    color: #fff;
  }

  /* Override legacy nav a grey on mobile */
  header.header-scrolled nav a {
    color: #fff;
  }

  header.header-scrolled nav a:hover {
    color: #fff;
  }

  .nav-link.nav-link-active {
    color: var(--accent);
    border-left-color: var(--accent);
  }

  .nav-arrow {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      color 0.25s ease;
    /* Larger tap target for mobile */
    padding: 12px 16px;
    margin: -12px -16px -12px 0;
    cursor: pointer;
  }

  .nav-item.dropdown-open .nav-arrow {
    transform: rotate(180deg);
    color: var(--accent);
  }

  .nav-item.dropdown-open>.nav-link {
    color: var(--accent);
    background: rgba(196, 147, 92, 0.06);
    border-left-color: var(--accent);
  }

  .nav-link-simple {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 22px 28px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.03em;
    border-left: 3px solid transparent;
  }

  .nav-link-simple:hover,
  .nav-link-simple:active {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
  }

  /* Override scrolled-header grey on mobile — keep nav-link-simple white */
  header.header-scrolled .nav-link-simple {
    color: #fff;
  }

  header.header-scrolled .nav-link-simple:hover,
  header.header-scrolled .nav-link-simple:active {
    color: #fff;
  }

  /* Mobile dropdown — sleek dark accordion */
  .mega-menu {
    position: static;
    min-width: 100%;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: none !important;
    padding: 0;
    margin: 0;
    width: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04),
      inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    border-radius: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.3s ease,
      visibility 0.3s ease,
      padding 0.3s ease;
    box-sizing: border-box;
  }

  .mega-menu::before {
    display: none;
  }

  .nav-item.dropdown-open .mega-menu {
    max-height: 800px;
    opacity: 1;
    visibility: visible;
    padding: 12px 0 8px;
    overflow: visible;
  }

  /* Mobile subcategory — vertical 1-column list for better touch targets */
  .mega-menu-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px;
    padding: 8px 20px 12px;
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
  }

  .mega-menu-inner::-webkit-scrollbar {
    display: none;
  }

  .mega-menu-small .mega-menu-inner {
    gap: 8px;
  }

  .mega-category-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 12px 16px;
    min-width: unset;
    max-width: unset;
    flex-shrink: unset;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-radius: 12px;
    transition: all 0.2s ease;
    gap: 14px;
    /* More spacing */
  }

  /* Fix ugly white background on active/hover */
  .mega-category-item:active,
  .mega-category-item:hover {
    background: rgba(196, 147, 92, 0.15);
    /* Warm accent low opacity */
    border-color: rgba(196, 147, 92, 0.4);
  }

  .mega-category-item img {
    width: 44px;
    /* Slightly larger */
    height: 44px;
    object-fit: contain;
    /* Ensure image isn't cropped */
    border-radius: 8px;
    margin-bottom: 0;
    flex-shrink: 0;
    border: none;
    background: #fff;
    /* White background for product image isolation */
    padding: 2px;
  }

  .mega-category-item span {
    font-size: 0.9rem;
    /* Larger text */
    font-weight: 500;
    color: #ffffff;
    /* Bright white text */
    line-height: 1.3;
    max-width: none;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
  }

  /* View All link in mobile dropdown — styled as prominent CTA */
  .mega-view-all {
    display: block;
    text-align: center;
    margin: 8px 20px 4px;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #b07e50);
    border-radius: 10px;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .mega-view-all:hover,
  .mega-view-all:active {
    background: linear-gradient(135deg, #b07e50, var(--accent));
    transform: scale(0.98);
    color: #fff;
  }

  /* Disable hover effects on mobile — use tap only */
  .nav-item:hover .mega-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
  }

  .nav-item.dropdown-open .mega-menu,
  .nav-item.dropdown-open:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    max-height: 800px;
    padding: 12px 0 8px;
    overflow: visible;
  }

  /* Call CTA removed per user request */
}

/* Smaller mobile screens */
/* Smaller mobile screens */
@media (max-width: 560px) {
  /* mega-menu-inner and category-item inherit from 1024px block (flex column) */

  .nav-link {
    font-size: 1.1rem;
    padding: 20px 24px;
  }

  .nav-link-simple {
    font-size: 1.1rem;
    padding: 20px 24px;
  }
}

@media (max-width: 768px) {

  /* ---- HEADER BAR ---- */
  .header-inner {
    padding: 0 16px;
    height: 64px;
  }

  .page {
    padding-top: 64px;
  }

  .logo {
    height: 50px;
  }

  .logo img {
    height: 40px;
  }

  /* ---- HERO SECTION ---- */
  .hero {
    padding-top: 1.2rem;
    padding-bottom: 1rem;
    min-height: auto;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1.12;
    margin-bottom: 0.6rem;
  }

  .hero-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero-badges {
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .hero-badge-separator {
    display: none;
  }

  .hero-cta {
    flex-direction: column;
    gap: 0.6rem;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
  }

  /* ---- INTRO / CATEGORY HERO SECTIONS ---- */
  .intro-section {
    min-height: 60vh;
  }

  .intro-hero-content h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    margin-bottom: 0.8rem;
  }

  .intro-hero-content p {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }

  /* ---- INTRO PREMIUM (subcategory cards) ---- */
  .intro-premium {
    padding: 2.5rem 0;
  }

  .intro-premium-header {
    margin-bottom: 1.5rem;
  }

  .intro-premium-header h2 {
    font-size: 1.5rem;
  }

  .intro-premium-header p {
    font-size: 0.85rem;
  }

  .intro-premium-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .intro-card {
    border-radius: 12px;
  }

  .intro-card-img img {
    height: 110px;
  }

  .intro-card h3 {
    font-size: 0.82rem;
    padding: 0 8px;
  }

  .intro-card p {
    font-size: 0.68rem;
    padding: 0 8px;
  }

  .intro-card .card-explore {
    font-size: 0.72rem;
    padding: 6px 8px;
  }

  /* ---- FEATURED PRODUCT CARD ---- */
  .featured-card {
    border-radius: 16px;
    margin: 0 16px;
  }

  .featured-card img {
    max-height: 200px;
  }

  /* ---- CATEGORY GRIDS ---- */
  .category-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  /* ---- CLIENTS STRIP ---- */
  .clients-strip {
    padding: 1.5rem 0;
  }

  .clients-strip h3 {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .clients-logo {
    height: 28px;
  }

  /* ---- CERTIFICATIONS / QUALITY ---- */
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cert-item {
    padding: 1rem;
    border-radius: 12px;
  }

  .cert-icon {
    font-size: 1.8rem;
  }

  .cert-item h4 {
    font-size: 0.85rem;
  }

  .cert-item p {
    font-size: 0.72rem;
  }

  /* ---- WHY CHOOSE US ---- */
  .why-choose-list li {
    font-size: 0.88rem;
    padding: 0.6rem 0;
  }

  /* ---- SECTION SPACING ---- */
  .section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 16px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  /* ---- CONTACT SECTION ---- */
  .contact-section {
    padding: 2.5rem 0;
  }

  .contact-title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
  }

  .contact-subtitle {
    font-size: 0.85rem;
  }

  .contact-detail-item {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
  }

  .contact-icon {
    font-size: 1.1rem;
  }

  .contact-detail-item strong {
    font-size: 0.82rem;
  }

  .contact-detail-item span {
    font-size: 0.78rem;
  }

  .contact-form-wrap {
    padding: 1.1rem;
    border-radius: 12px;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-group label {
    font-size: 0.78rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 0.88rem;
    padding: 0.7rem 0.8rem;
    border-radius: 10px;
  }

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

  .form-toggle {
    gap: 0.4rem;
  }

  .toggle-option span {
    font-size: 0.78rem;
    padding: 0.6rem 0.4rem;
  }

  .btn-submit {
    padding: 1rem;
    font-size: 0.95rem;
    border-radius: 10px;
  }

  /* ---- FOOTER ---- */
  .site-footer {
    padding: 2.5rem 0 1.2rem;
  }

  .footer-brand {
    margin-bottom: 1rem;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .footer-column h4 {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
  }

  .footer-column a {
    font-size: 0.82rem;
    padding: 0.3rem 0;
  }

  .footer-bottom {
    padding-top: 1rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
  }

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

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 560px) {

  .category-grid,
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .section {
    padding-top: 2rem;
  }

  .clients-track {
    animation-duration: 22s;
  }

  /* Intro premium grid — single column on very small */
  .intro-premium-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .intro-card-img img {
    height: 100px;
  }

  .hero-cta .btn {
    font-size: 0.95rem;
    padding: 0.9rem;
  }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 5rem 0;
  background: var(--bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(225, 222, 216, 0.7);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(196, 147, 92, 0.1);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s ease, color 0.2s ease;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-question:hover {
  background: rgba(245, 243, 240, 0.6);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--accent-dark);
  font-weight: 500;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.92rem;
  }
  .faq-answer {
    padding: 0 1.2rem 1rem;
    font-size: 0.85rem;
  }
}

/* ============================================
   CONTACT SECTION - PREMIUM FORM
   ============================================ */
.contact-section {
  background: linear-gradient(135deg, #1f2c24 0%, #2a3d32 100%);
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-grid > * {
  min-width: 0;
}

.contact-info {
  color: #fff;
}

.contact-badge {
  display: inline-block;
  background: rgba(196, 147, 92, 0.2);
  color: var(--accent);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.contact-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-desc strong {
  color: var(--accent);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
}

.contact-detail-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

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

.contact-detail-item div {
  display: flex;
  flex-direction: column;
}

.contact-detail-item strong {
  font-size: 0.9rem;
  color: #fff;
}

.contact-detail-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Contact Form */
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 100%;
  overflow: hidden;
}

.form-toggle {
  display: flex;
  gap: 1rem;
  background: #f5f3f0;
  padding: 0.5rem;
  border-radius: var(--radius-pill);
  box-sizing: border-box;
  max-width: 100%;
}

.toggle-option {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.toggle-option input {
  display: none;
}

.toggle-option span {
  width: 100%;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: all var(--transition-fast);
}

.toggle-option input:checked+span {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 44, 36, 0.2);
}

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

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196, 147, 92, 0.15);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit .spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* ============================================
   FOOTER - PREMIUM DESIGN
   ============================================ */
.site-footer {
  background: linear-gradient(135deg, #0f1f1a 0%, #1a332d 50%, #0d1916 100%);
  color: #fff;
  padding: 4rem 0 2rem;
}

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

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.footer-logo span {
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  font-size: 1.3rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-social a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: #fff;
}

.footer-column a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.4rem 0;
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent);
  transform: translateX(3px);
}

.footer-address {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-credit {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-fast);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
}

.footer-credit span {
  color: #f0c14b;
  font-weight: 700;
}

.footer-credit:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 50;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Pulse Animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  z-index: -1;
  animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 0;
  }

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

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrap {
    padding: 2rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 1.2rem;
    border-radius: 14px;
    margin: 0 -4px;
  }

  .contact-form {
    gap: 1.1rem;
  }

  .form-toggle {
    gap: 0.5rem;
  }

  .toggle-option span {
    font-size: 0.82rem;
    padding: 0.65rem 0.5rem;
  }

  .btn-submit {
    padding: 1.1rem;
    font-size: 1rem;
    border-radius: 12px;
  }

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

  .footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .footer-column a {
    font-size: 0.85rem;
    padding: 0.35rem 0;
  }

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

  .footer-legal {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

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

  .site-footer {
    padding: 3rem 0 1.5rem;
  }
}