/* ═══════════════════════════════════════════════════
   FASHION ART INDIA — LUXURY PRESENTATION STYLES
   Theme: Black · Gold · White · Dark Charcoal
═══════════════════════════════════════════════════ */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #F0D080;
  --gold-dark:   #8B6914;
  --gold-pale:   rgba(201,168,76,0.12);
  --gold-glow:   rgba(201,168,76,0.25);
  --black:       #0A0A0A;
  --charcoal:    #141414;
  --charcoal-2:  #1C1C1C;
  --charcoal-3:  #242424;
  --dark:        #0E0E0E;
  --white:       #FAFAF8;
  --white-dim:   rgba(250,250,248,0.75);
  --white-faint: rgba(250,250,248,0.35);
  --white-ghost: rgba(250,250,248,0.08);
  --border:      rgba(201,168,76,0.2);
  --border-dim:  rgba(250,250,248,0.08);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;
  --font-accent:  'Playfair Display', Georgia, serif;

  --slide-w: 100vw;
  --slide-h: 100vh;
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
  cursor: default;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* ══════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.95) 0%, transparent 100%);
  backdrop-filter: blur(2px);
}

.nav-logo-svg { width: 80px; height: 28px; }

.nav-counter {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--white-dim);
}
.nav-counter #currentSlide { color: var(--gold); font-weight: 500; }
.nav-sep { margin: 0 6px; color: var(--white-faint); }

.nav-controls { display: flex; gap: 8px; }
.nav-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease-luxury);
}
.nav-btn svg { width: 16px; height: 16px; }
.nav-btn:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
}
.nav-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,0.05);
  z-index: 101;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  transition: width 0.6s var(--ease-luxury);
  width: 7.69%;
}

/* ── SLIDE DOTS ── */
.slide-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--white-faint);
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  border: 1px solid transparent;
}
.dot.active {
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold-glow);
  transform: scale(1.3);
}
.dot:hover { background: var(--gold-light); }

/* ══════════════════════════════════════════════════
   SLIDES — BASE
══════════════════════════════════════════════════ */
.slide {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s var(--ease-luxury), transform 0.7s var(--ease-luxury);
  pointer-events: none;
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.slide.exit-left {
  opacity: 0;
  transform: translateX(-60px);
}

.slide-dark    { background: var(--dark); }
.slide-charcoal { background: var(--charcoal); }

.slide-inner {
  width: 100%;
  max-width: 1280px;
  padding: 100px 80px 60px;
  height: 100%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* ── SLIDE LABEL ── */
.slide-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ── GOLD RULE ── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 16px;
}

/* ── HEADINGS ── */
.slide-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.5px;
}
.slide-heading em {
  font-style: italic;
  color: var(--gold-light);
}

.slide-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-dim);
  max-width: 600px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.slide-body {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.9;
  letter-spacing: 0.2px;
  max-width: 520px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ══════════════════════════════════════════════════
   SLIDE 01 — COVER
══════════════════════════════════════════════════ */
.slide-cover { background: var(--black); }

.cover-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cover-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.cover-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.85) 100%);
}

.cover-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 80px 40px;
}

.cover-top-line {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--gold);
  text-transform: uppercase;
}
.cover-est, .cover-loc { opacity: 0.8; }
.cover-divider-h {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.cover-divider-h.short { width: 20px; }

/* Logo Mark */
.logo-mark { margin: 8px 0; }
.logo-svg { width: 160px; height: 160px; }

/* Cover Title */
.cover-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
}
.cover-title-fashion {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
}
.cover-title-art {
  font-size: clamp(36px, 5.5vw, 72px);
  color: var(--gold-light);
  font-weight: 500;
  font-style: italic;
  letter-spacing: 6px;
}
.cover-title-india {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
}

.cover-tagline {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--white-faint);
  text-transform: uppercase;
}

.cover-bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 8px;
}
.cover-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  border: 1px solid var(--border);
  padding: 6px 16px;
}

.cover-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--white-faint);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════════════════
   SLIDE 02 — ABOUT
══════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-left { display: flex; flex-direction: column; gap: 20px; }

.about-quote {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-left: 2px solid var(--gold);
  background: var(--gold-pale);
  margin-top: 8px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
.about-quote p {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  align-self: center;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--charcoal-2);
  padding: 24px 20px;
  border: 1px solid var(--border-dim);
  transition: border-color 0.3s;
}
.stat-card:hover { border-color: var(--border); }
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.stat-num span { font-size: 24px; color: var(--gold); }
.stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white-faint);
  text-transform: uppercase;
  margin-top: 6px;
}

.about-pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--border-dim);
  transition: all 0.3s;
}
.pillar:hover { border-color: var(--border); background: var(--gold-pale); }
.pillar-icon {
  width: 36px; height: 36px;
  color: var(--gold);
  flex-shrink: 0;
}
.pillar-icon svg { width: 100%; height: 100%; }
.pillar-text strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.pillar-text span {
  font-size: 11px;
  color: var(--white-faint);
  font-weight: 300;
}

/* ══════════════════════════════════════════════════
   SLIDE 03 — MANUFACTURING
══════════════════════════════════════════════════ */
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.mfg-card {
  background: var(--charcoal-2);
  padding: 28px 24px;
  border: 1px solid var(--border-dim);
  transition: all 0.4s var(--ease-luxury);
  position: relative;
  overflow: hidden;
}
.mfg-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.4s var(--ease-luxury);
}
.mfg-card:hover::before { width: 100%; }
.mfg-card:hover { border-color: var(--border); background: var(--charcoal-3); }
.mfg-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 16px;
}
.mfg-icon svg { width: 100%; height: 100%; }
.mfg-card h3 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.mfg-card p {
  font-size: 12px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════
   SLIDE 04 — PRODUCTS
══════════════════════════════════════════════════ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  flex: 1;
}
.product-card {
  background: var(--charcoal-2);
  padding: 20px 18px;
  border: 1px solid var(--border-dim);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s var(--ease-luxury);
  position: relative;
}
.product-card:hover {
  border-color: var(--gold);
  background: var(--charcoal-3);
  transform: translateY(-2px);
}
.pc-number {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.6;
}
.pc-icon {
  width: 40px; height: 40px;
  color: var(--gold);
}
.pc-icon svg { width: 100%; height: 100%; }
.product-card h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}
.product-card p {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   SLIDE 05 — PROCESS
══════════════════════════════════════════════════ */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  position: relative;
  padding-top: 20px;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}
.ps-num {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
  background: var(--charcoal);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.ps-connector {
  position: absolute;
  top: 22px;
  left: 50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2));
  z-index: 1;
}
.ps-connector.last { display: none; }
.ps-content {
  text-align: center;
  padding: 0 4px;
}
.ps-content h3 {
  font-size: 11px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.ps-content p {
  font-size: 10px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   SLIDE 06 — QUALITY CONTROL
══════════════════════════════════════════════════ */
.qc-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
  height: 100%;
  padding: 100px 80px 60px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.qc-left { display: flex; flex-direction: column; gap: 24px; }
.qc-badge {
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  margin-top: 8px;
}
.qc-badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.qc-badge-inner svg { width: 80px; height: 80px; }
.qc-badge-inner span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}

.qc-stages { display: flex; flex-direction: column; gap: 2px; }
.qc-stage {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  transition: all 0.3s;
}
.qc-stage:hover { border-color: var(--border); background: var(--charcoal-3); }
.qcs-icon {
  width: 32px; height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}
.qcs-icon svg { width: 100%; height: 100%; }
.qcs-text strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.qcs-text p {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   SLIDE 07 — SOURCING
══════════════════════════════════════════════════ */
.sourcing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.sourcing-map {
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-visual {
  width: 100%;
  max-width: 400px;
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 24px;
}
.india-map-svg { width: 100%; height: auto; }

.sourcing-details { display: flex; flex-direction: column; gap: 2px; }
.sourcing-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 18px;
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  transition: all 0.3s;
}
.sourcing-item:hover { border-color: var(--border); }
.si-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
  box-shadow: 0 0 8px var(--gold-glow);
}
.si-content strong {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.si-content p {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   SLIDE 08 — EXPORT
══════════════════════════════════════════════════ */
.export-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.export-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.export-stat {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.es-icon { width: 40px; height: 40px; color: var(--gold); }
.es-icon svg { width: 100%; height: 100%; }
.es-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.es-num span { font-size: 18px; color: var(--gold); }
.es-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white-faint);
  text-transform: uppercase;
}

.export-features { display: flex; flex-direction: column; gap: 2px; }
.ef-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.ef-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  padding: 20px 22px;
  transition: border-color 0.3s;
}
.ef-card:hover { border-color: var(--border); }
.ef-card h3 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ef-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.ef-list li {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-dim);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.ef-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 5px;
  color: var(--gold);
  top: 4px;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.market-tags span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 3px 10px;
  background: var(--gold-pale);
}

/* ══════════════════════════════════════════════════
   SLIDE 09 — FACTORY
══════════════════════════════════════════════════ */
.factory-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
  padding: 100px 80px 60px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.factory-left { display: flex; flex-direction: column; gap: 24px; }
.factory-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 8px;
}
.fspec {
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  padding: 18px 16px;
}
.fspec-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
}
.fspec-val span { font-size: 14px; color: var(--gold); }
.fspec-key {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--white-faint);
  text-transform: uppercase;
  margin-top: 4px;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.workshop-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  padding: 20px 18px;
  transition: all 0.3s;
}
.workshop-card:hover { border-color: var(--border); background: var(--charcoal-3); }
.wc-icon { width: 36px; height: 36px; color: var(--gold); margin-bottom: 12px; }
.wc-icon svg { width: 100%; height: 100%; }
.workshop-card h4 {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.workshop-card p {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   SLIDE 10 — CUSTOMIZATION
══════════════════════════════════════════════════ */
.custom-layout { display: flex; flex-direction: column; gap: 32px; }

.custom-process {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.cp-step {
  flex: 1;
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s;
}
.cp-step:hover { border-color: var(--border); }
.cp-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
}
.cp-body h3 {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.cp-body p {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.6;
}
.cp-arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--gold);
  font-size: 20px;
  opacity: 0.5;
  flex-shrink: 0;
}

.custom-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cc-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.3s;
}
.cc-card:hover { border-color: var(--gold); background: var(--charcoal-3); }
.cc-icon { width: 40px; height: 40px; color: var(--gold); margin: 0 auto 12px; }
.cc-icon svg { width: 100%; height: 100%; }
.cc-card h3 {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.cc-card p {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   SLIDE 11 — WHY CHOOSE US
══════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.why-card {
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s;
}
.why-card:hover { border-color: var(--border); background: var(--charcoal-3); }
.wc-featured {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, var(--charcoal-2) 0%, rgba(201,168,76,0.08) 100%);
  border-color: var(--border);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.wc-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  opacity: 0.6;
}
.wc-icon-lg {
  width: 60px; height: 60px;
  color: var(--gold);
  margin: 8px auto;
}
.wc-icon-lg svg { width: 100%; height: 100%; }
.why-card h3 {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
}
.why-card p {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-faint);
  line-height: 1.6;
}

/* ══════════════════════════════════════════════════
   SLIDE 12 — GLOBAL PRESENCE
══════════════════════════════════════════════════ */
.global-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}
.world-map-container {
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  padding: 24px;
}
.world-svg { width: 100%; height: auto; }

.global-stats { display: flex; flex-direction: column; gap: 2px; }
.gs-item {
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.gs-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--gold-light);
  line-height: 1;
  min-width: 80px;
}
.gs-num span { font-size: 16px; color: var(--gold); }
.gs-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white-faint);
  text-transform: uppercase;
}
.gs-markets {
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  padding: 20px;
}
.gs-markets h3 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.market-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.ml-item {
  font-size: 11px;
  font-weight: 300;
  color: var(--white-dim);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ml-flag { font-size: 14px; }

/* ══════════════════════════════════════════════════
   SLIDE 13 — CONTACT
══════════════════════════════════════════════════ */
.slide-contact {
  background: var(--black);
  flex-direction: column;
}
.contact-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.contact-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.contact-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  padding: 80px 60px;
  max-width: 900px;
  width: 100%;
}
.contact-logo-svg { width: 100px; height: 100px; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
.contact-title em {
  font-style: italic;
  color: var(--gold-light);
}
.contact-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--white-faint);
  max-width: 500px;
  line-height: 1.8;
  letter-spacing: 0.3px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  width: 100%;
  max-width: 700px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--charcoal-2);
  border: 1px solid var(--border-dim);
  text-align: left;
  transition: border-color 0.3s;
}
.cd-item:hover { border-color: var(--border); }
.cd-icon {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.cd-icon svg { width: 100%; height: 100%; }
.cd-text strong {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cd-text span {
  font-size: 12px;
  font-weight: 300;
  color: var(--white-dim);
  line-height: 1.6;
}

.contact-footer {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cf-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.cf-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--white-faint);
  text-transform: uppercase;
  flex-wrap: wrap;
  justify-content: center;
}
.cf-dot { color: var(--gold); font-size: 6px; }

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.slide.active .slide-label    { animation: fadeInUp 0.5s var(--ease-luxury) 0.1s both; }
.slide.active .gold-rule       { animation: fadeInUp 0.5s var(--ease-luxury) 0.2s both; }
.slide.active .slide-heading   { animation: fadeInUp 0.6s var(--ease-luxury) 0.25s both; }
.slide.active .slide-sub       { animation: fadeInUp 0.6s var(--ease-luxury) 0.35s both; }
.slide.active .slide-body      { animation: fadeInUp 0.6s var(--ease-luxury) 0.35s both; }
.slide.active .stat-card       { animation: fadeInUp 0.5s var(--ease-luxury) 0.4s both; }
.slide.active .mfg-card        { animation: fadeInUp 0.5s var(--ease-luxury) 0.3s both; }
.slide.active .product-card    { animation: fadeInUp 0.4s var(--ease-luxury) 0.3s both; }
.slide.active .process-step    { animation: fadeInUp 0.5s var(--ease-luxury) 0.3s both; }
.slide.active .cover-content   { animation: fadeIn 1s var(--ease-luxury) 0.2s both; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .slide-inner { padding: 90px 48px 48px; }
  .about-layout { grid-template-columns: 1fr; gap: 32px; }
  .mfg-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .process-timeline { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .process-step:nth-child(n+5) { margin-top: 24px; }
  .ps-connector { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .wc-featured { grid-row: auto; }
  .factory-layout { grid-template-columns: 1fr; padding: 90px 48px 48px; }
  .qc-layout { grid-template-columns: 1fr; padding: 90px 48px 48px; }
}

@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .slide-inner { padding: 80px 24px 40px; }
  .cover-title { flex-direction: column; gap: 4px; letter-spacing: 4px; }
  .mfg-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .export-stats { grid-template-columns: 1fr; }
  .ef-row { grid-template-columns: 1fr; }
  .custom-process { flex-direction: column; }
  .cp-arrow { transform: rotate(90deg); align-self: center; }
  .custom-capabilities { grid-template-columns: repeat(2, 1fr); }
  .global-layout { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .slide-dots { display: none; }
}