/* ==========================================================================
   iWarung Compro — 2026 iOS & Glassmorphism Theme System
   Based on 01-BRAND.md and 02-DESIGN-SYSTEM.md specs.
   ========================================================================== */

/* ── 1. DESIGN TOKENS & VARIABLES ────────────────────────────────────────── */
:root {
  /* Brand Red Palette */
  --c-red-core: #C8102E;      /* Pantone 186 C — Brand accent */
  --c-red-signal: #E4002B;    /* Pantone 185 C — CTA ONLY */
  --c-red-deep: #76232F;      /* Pantone 188 C — Oxblood depth */
  --c-red-ink: #3E1720;       /* Darkest red ink */

  /* Neutral Palette (2026 Cloud Dancer Canvas) */
  --c-canvas: #F0EEE9;        /* Pantone 11-4201 TCX Cloud Dancer */
  --c-canvas-lift: #FAF9F7;   /* Crisp warm white card solid */
  --c-ink: #1D252D;           /* Pantone 433 C Charcoal body text */
  --c-ink-soft: #5B6770;      /* Pantone 431 C Slate secondary text */
  --c-hairline: rgba(29, 37, 45, 0.10);

  /* Accent Colors */
  --c-amber: #F1B434;         /* Pantone 143 C Harvest Amber */
  --c-teal: #279989;          /* Pantone 7473 C Circular Teal */

  /* Glassmorphism Specs */
  --glass-bg: rgba(250, 249, 247, 0.68);
  --glass-bg-strong: rgba(250, 249, 247, 0.85);
  --glass-bg-dark: rgba(62, 23, 32, 0.55);
  --glass-border: rgba(255, 255, 255, 0.65);
  --glass-border-dark: rgba(255, 255, 255, 0.18);
  --glass-blur: 20px;
  --glass-blur-lg: 32px;
  --glass-sat: 160%;

  /* Shadow Palette (Red-tinted ambient depth) */
  --sh-xs: 0 1px 3px rgba(62, 23, 32, 0.05);
  --sh-sm: 0 4px 12px rgba(62, 23, 32, 0.06);
  --sh-md: 0 12px 32px rgba(62, 23, 32, 0.09);
  --sh-lg: 0 24px 60px rgba(62, 23, 32, 0.14);
  --sh-cta: 0 10px 26px rgba(228, 0, 43, 0.32);
  --sh-cta-hover: 0 14px 38px rgba(228, 0, 43, 0.45);
  --sh-inner-glass: inset 0 1px 0 rgba(255, 255, 255, 0.65);

  /* Radius System (iOS Smooth Curves) */
  --r-xs: 8px;
  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 26px;
  --r-2xl: 36px;
  --r-pill: 999px;

  /* Typography Scale */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --t-hero: clamp(2.25rem, 1.3rem + 4.2vw, 4.5rem);
  --t-h2: clamp(1.85rem, 1.2rem + 2.5vw, 3.1rem);
  --t-h3: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem);
  --t-stat: clamp(2.5rem, 1.6rem + 3.8vw, 4.2rem);

  /* Motion Easings */
  --e-out: cubic-bezier(0.22, 1, 0.36, 1);
  --e-spring: cubic-bezier(0.175, 0.885, 0.32, 1.15);
  --d-fast: 160ms;
  --d-base: 280ms;
  --d-slow: 450ms;
}

/* ── 2. GLOBAL RESET & BASE STYLES ──────────────────────────────────────── */
body {
  font-family: var(--font-main);
  background-color: var(--c-canvas);
  color: var(--c-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* Tabular Numbers for Metrics */
.tnum {
  font-variant-numeric: tabular-nums;
}

/* ── 3. AMBIENT BACKGROUND MESH (GLOW BLOBS) ─────────────────────────────── */
.ambient-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.45;
  will-change: transform;
}

.mesh-blob-1 {
  width: 650px;
  height: 650px;
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(228, 0, 43, 0.32) 0%, rgba(200, 16, 46, 0.08) 60%, transparent 80%);
}

.mesh-blob-2 {
  width: 550px;
  height: 550px;
  top: 35%;
  left: -150px;
  background: radial-gradient(circle, rgba(241, 180, 52, 0.28) 0%, rgba(241, 180, 52, 0.05) 60%, transparent 80%);
}

.mesh-blob-3 {
  width: 600px;
  height: 600px;
  top: 68%;
  right: -120px;
  background: radial-gradient(circle, rgba(39, 153, 137, 0.22) 0%, rgba(39, 153, 137, 0.04) 60%, transparent 80%);
}

/* ── 4. GLASSMORPHISM UTILITY CLASSES ────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md), var(--sh-inner-glass);
}

.glass--dark {
  background: var(--glass-bg-dark);
  border-color: var(--glass-border-dark);
  box-shadow: var(--sh-lg), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: var(--c-canvas);
}

.glass--solid {
  background: var(--glass-bg-strong);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--sh-md), var(--sh-inner-glass);
}

.glass--interactive {
  transition: transform var(--d-base) var(--e-out),
              box-shadow var(--d-base) var(--e-out),
              border-color var(--d-base) var(--e-out);
}

@media (hover: hover) {
  .glass--interactive:hover {
    transform: translateY(-5px);
    box-shadow: var(--sh-lg), var(--sh-inner-glass);
    border-color: rgba(228, 0, 43, 0.3);
  }
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(1px)) {
  .glass { background: rgba(250, 249, 247, 0.96); }
  .glass--dark { background: rgba(62, 23, 32, 0.95); }
}

/* ── 5. iOS FLOATING HEADER & NAVIGATION ─────────────────────────────────── */
.ios-nav-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--d-base) var(--e-out);
  padding: 0 16px;
}

.ios-nav-header .container {
  max-width: 1140px;
}

.ios-nav-bar {
  padding: 10px 24px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 249, 247, 0.75);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 32px rgba(62, 23, 32, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ios-brand-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-red-core);
  text-decoration: none;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ios-brand-logo:hover, .ios-brand-logo:focus {
  color: var(--c-red-signal);
  text-decoration: none;
}

.ios-brand-badge {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(200, 16, 46, 0.1);
  color: var(--c-red-core);
  padding: 2px 8px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ios-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ios-nav-link {
  color: var(--c-ink);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: all var(--d-fast) var(--e-out);
}

.ios-nav-link:hover {
  background: rgba(200, 16, 46, 0.08);
  color: var(--c-red-core);
  text-decoration: none;
}

.ios-nav-link.active {
  background: var(--c-red-core);
  color: #FFFFFF;
}

/* ── 6. BUTTON SYSTEM ────────────────────────────────────────────────────── */
.btn-ios {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--r-pill);
  font-family: var(--font-main);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform var(--d-fast) var(--e-out),
              box-shadow var(--d-base) var(--e-out),
              background var(--d-fast) var(--e-out),
              color var(--d-fast) var(--e-out);
}

.btn-ios:focus-visible {
  outline: 3px solid var(--c-ink);
  outline-offset: 3px;
}

.btn-ios-primary {
  background: var(--c-red-signal);
  color: #FFFFFF !important;
  box-shadow: var(--sh-cta);
}

.btn-ios-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-cta-hover);
  background: #F00A34;
  color: #FFFFFF !important;
  text-decoration: none;
}

.btn-ios-primary:active {
  transform: translateY(0);
  box-shadow: var(--sh-cta);
}

.btn-ios-secondary {
  background: rgba(200, 16, 46, 0.08);
  color: var(--c-red-core) !important;
  border: 1.5px solid rgba(200, 16, 46, 0.25);
}

.btn-ios-secondary:hover {
  background: rgba(200, 16, 46, 0.16);
  border-color: var(--c-red-core);
  transform: translateY(-2px);
  color: var(--c-red-core) !important;
  text-decoration: none;
}

.btn-ios-glass {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: var(--c-ink) !important;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--sh-sm);
}

.btn-ios-glass:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  color: var(--c-red-core) !important;
  text-decoration: none;
}

/* ── 7. BADGES & CHIPS ───────────────────────────────────────────────────── */
.badge-ios {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-eyebrow {
  background: rgba(200, 16, 46, 0.09);
  color: var(--c-red-core);
  border: 1px solid rgba(200, 16, 46, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.badge-verified {
  background: rgba(39, 153, 137, 0.12);
  color: var(--c-teal);
  border: 1px solid rgba(39, 153, 137, 0.25);
}

.badge-live {
  background: rgba(241, 180, 52, 0.14);
  color: #B27B0A;
  border: 1px solid rgba(241, 180, 52, 0.3);
}

.badge-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-amber);
  box-shadow: 0 0 0 3px rgba(241, 180, 52, 0.3);
  animation: pulseDot 2s infinite var(--e-out);
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(241, 180, 52, 0.5); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(241, 180, 52, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(241, 180, 52, 0); }
}

/* ── 8. HERO SECTION STYLING ─────────────────────────────────────────────── */
.hero-section-ios {
  position: relative;
  min-height: 92vh;
  padding-top: 150px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1D252D;
}

.hero-section-ios .nw_image_cut {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-section-ios .nw_background_image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  top: 0;
  background: none;
}

.hero-section-ios .nw_hero_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.65) contrast(1.12);
  transform: scale(1.03);
}

.hero-section-ios .nw_background_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    148deg,
    rgba(62, 23, 32, 0.65) 0%,
    rgba(118, 35, 47, 0.52) 50%,
    rgba(29, 37, 45, 0.85) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-glass-card {
  padding: 52px 48px;
  border-radius: var(--r-2xl);
  position: relative;
  z-index: 5;
  background: rgba(250, 249, 247, 0.76);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero-title {
  font-size: var(--t-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--c-ink);
  margin-top: 16px;
  margin-bottom: 20px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--c-red-signal) 0%, var(--c-red-core) 50%, var(--c-red-deep) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  color: var(--c-ink-soft);
  line-height: 1.6;
  max-width: 62ch;
  margin-bottom: 32px;
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.hero-stat-box {
  padding: 20px 24px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--sh-xs);
}

.hero-stat-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-red-core);
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stat-lbl {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-ink-soft);
  margin-top: 6px;
}

/* ── 9. SECTION CARDS & GRID SYSTEM ──────────────────────────────────────── */
.section-header-ios {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px auto;
}

.section-title-ios {
  font-size: var(--t-h2);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 12px;
  color: var(--c-ink);
}

.card-ios {
  padding: 32px;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.card-icon-chip {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(200, 16, 46, 0.08);
  color: var(--c-red-core);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-title-ios {
  font-size: var(--t-h3);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--c-ink);
  margin-bottom: 12px;
}

.card-text-ios {
  font-size: 0.98rem;
  color: var(--c-ink-soft);
  line-height: 1.65;
  font-weight: 500;
}

/* ── 10. BUSINESS UNITS SPECIFIC CARDS ────────────────────────────────────── */
.unit-card-ios {
  padding: 40px;
  border-radius: var(--r-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.unit-card-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-red-core);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.unit-card-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px 0;
}

.unit-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--c-ink);
  font-weight: 600;
  margin-bottom: 10px;
}

.unit-card-features li i {
  color: var(--c-teal);
  font-size: 1.1rem;
}

/* ── 11. MOBILE FLOATING ACTION DOCK (iOS STYLE) ────────────────────────── */
.ios-cta-dock {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: calc(100% - 32px);
  max-width: 440px;
  padding: 10px;
  border-radius: var(--r-pill);
  background: rgba(250, 249, 247, 0.82);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 40px rgba(62, 23, 32, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  display: none;
}

.ios-dock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ios-dock-btn {
  min-height: 48px;
  padding: 0 16px;
  font-size: 0.9rem;
  border-radius: var(--r-pill);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none !important;
}

/* Show dock on screens smaller than 1024px */
@media (max-width: 1023px) {
  .ios-cta-dock {
    display: block;
  }
  body {
    padding-bottom: 84px;
  }
  .ios-nav-links {
    display: none;
  }
}

/* ── 12. MODAL & DIALOG ENHANCEMENTS ─────────────────────────────────────── */
.nw_business_modal_content,
.nw_product_modal_content {
  background: var(--glass-bg-strong) !important;
  -webkit-backdrop-filter: blur(var(--glass-blur-lg)) saturate(160%) !important;
  backdrop-filter: blur(var(--glass-blur-lg)) saturate(160%) !important;
  border: 1px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: var(--r-2xl) !important;
  box-shadow: var(--sh-lg), var(--sh-inner-glass) !important;
  padding: 36px !important;
  color: var(--c-ink) !important;
}

.nw_business_modal {
  background-color: rgba(62, 23, 32, 0.45) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  backdrop-filter: blur(8px) !important;
}

/* ── 13. ACCESSIBILITY & MOTION PREFERENCES ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── 14. JAWA BARAT MAP & CITY PIN HIGHLIGHTS ────────────────────────────── */
.jabar-map-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-canvas-lift);
  border: 1px solid rgba(29, 37, 45, 0.1);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.jabar-map-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  pointer-events: none; /* Locked - cannot scroll/drag map */
  user-select: none;
}

.map-locked-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(250, 249, 247, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(29, 37, 45, 0.12);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-ink-soft);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 6px;
}

.city-pin-card {
  padding: 18px 22px;
  border-radius: var(--r-lg);
  background: rgba(250, 249, 247, 0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--sh-sm);
  margin-bottom: 12px;
  transition: all var(--d-fast) var(--e-out);
  cursor: pointer;
}

.city-pin-card:hover, .city-pin-card.active {
  background: #FFFFFF;
  border-color: var(--c-red-core);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.city-pin-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.city-pin-card p {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  margin: 0;
  font-weight: 500;
}

/* ── 15. VISI & MISI EXECUTIVE CARDS ────────────────────────────────────── */
.visi-misi-section {
  padding-block: 60px;
}

.visi-card-ios {
  background: linear-gradient(135deg, rgba(250, 249, 247, 0.88) 0%, rgba(240, 238, 233, 0.92) 100%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(200, 16, 46, 0.22);
  border-radius: var(--r-2xl);
  padding: 40px;
  height: 100%;
  box-shadow: var(--sh-md), 0 12px 32px rgba(200, 16, 46, 0.06);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--d-fast) var(--e-out), box-shadow var(--d-fast) var(--e-out);
}

.visi-card-ios:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg), 0 20px 40px rgba(200, 16, 46, 0.12);
}

.visi-card-ios::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.visi-icon-badge {
  width: 56px;
  height: 56px;
  border-radius: var(--r-pill);
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.25);
  color: var(--c-red-core);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.visi-quote-text {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--c-ink);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.visi-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visi-tag-pill {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(29, 37, 45, 0.1);
  color: var(--c-ink-soft);
}

.misi-card-ios {
  background: rgba(250, 249, 247, 0.82);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--r-2xl);
  padding: 40px;
  height: 100%;
  box-shadow: var(--sh-md);
}

.misi-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.misi-item-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--r-xl);
  background: #FFFFFF;
  border: 1px solid rgba(29, 37, 45, 0.08);
  box-shadow: var(--sh-sm);
  transition: transform var(--d-fast) var(--e-out), border-color var(--d-fast) var(--e-out), box-shadow var(--d-fast) var(--e-out);
}

.misi-item-row:hover {
  transform: translateX(6px);
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: var(--sh-md);
}

.misi-num-badge {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: var(--r-md);
  background: rgba(200, 16, 46, 0.08);
  color: var(--c-red-core);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.misi-item-content {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--c-ink-soft);
  margin: 0;
  font-weight: 500;
}

.misi-item-content strong {
  color: var(--c-ink);
  font-weight: 700;
}

/* ── 16. SHIMMER TITLE & WOW PRODUCT CARDS ──────────────────────────────── */
.section-header-centered {
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 800px;
  margin: 0 auto 48px auto;
}

.section-header-centered .badge-eyebrow {
  background: #FFFFFF !important;
  color: var(--c-red-core) !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
}

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

.shimmer-text-ios {
  background: linear-gradient(110deg, #FFFFFF 0%, #F1B434 35%, #FFFFFF 65%, #F1B434 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmerLight 5s ease-in-out infinite;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.02em;
}

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

.shimmer-text-dark-ios {
  background: linear-gradient(110deg, #1D252D 0%, #C8102E 35%, #F1B434 50%, #C8102E 65%, #1D252D 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmerDark 6s ease-in-out infinite;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-header-centered .card-text-ios {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.1rem !important;
  font-weight: 500 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ── 17. COLLABORATION & PORTFOLIO SHOWCASE CARDS ───────────────────────── */
.collaboration-grid-ios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.collaboration-card-ios {
  background: rgba(250, 249, 247, 0.85);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
  transition: transform var(--d-base) var(--e-out), border-color var(--d-base) var(--e-out), box-shadow var(--d-base) var(--e-out);
  display: flex;
  flex-direction: column;
}

.collaboration-card-ios:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 16, 46, 0.35);
  box-shadow: var(--sh-lg), 0 20px 40px rgba(200, 16, 46, 0.12);
}

.collaboration-img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--c-canvas-lift);
}

.collaboration-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--e-out);
}

.collaboration-card-ios:hover .collaboration-img-wrapper img {
  transform: scale(1.08);
}

.collaboration-badge-floating {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(250, 249, 247, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--c-red-core);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--sh-xs);
  z-index: 2;
}

.collaboration-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.collaboration-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-ink);
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.collaboration-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--c-red-core);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--d-fast) var(--e-out);
}

.collaboration-card-ios:hover .collaboration-card-link {
  gap: 10px;
}


.business-category-card-ios {
  background: rgba(250, 249, 247, 0.78);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border-light);
  border-radius: var(--r-2xl);
  padding: 36px;
  margin-bottom: 48px;
  box-shadow: var(--sh-md);
}

.category-title-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(29, 37, 45, 0.08);
}

.category-title-header h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--c-ink);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-grid-ios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}

.product-card-ios {
  background: #FFFFFF;
  border: 1px solid rgba(29, 37, 45, 0.08);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all var(--d-base) var(--e-out);
  display: flex;
  flex-direction: column;
}

.product-card-ios:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 16, 46, 0.3);
  box-shadow: var(--sh-lg), 0 12px 28px rgba(200, 16, 46, 0.1);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--c-canvas-lift);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--d-slow) var(--e-out);
}

.product-card-ios:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-badge-floating {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(250, 249, 247, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--c-red-core);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--sh-xs);
}

.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.product-card-body h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-ink);
  margin: 0 0 8px 0;
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ── 18. INFOGRAPHIC & FLOATING JOIN US GLASS BANNER ────────────────────── */
.infographic-join-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  background: var(--c-canvas-lift);
  border: 1px solid rgba(29, 37, 45, 0.12);
}

.infographic-canvas-container {
  width: 100%;
  overflow: hidden;
  background: #F0EEE9;
}

.infographic-main-img {
  width: 100%;
  height: auto;
  display: block;
}

.floating-join-banner {
  position: relative;
  margin: -40px 16px 16px 16px;
  z-index: 10;
  padding: 28px 32px;
  border-radius: var(--r-xl);
  background: rgba(29, 37, 45, 0.92);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--sh-lg), 0 20px 40px rgba(0, 0, 0, 0.35);
  color: #FFFFFF;
}

.floating-banner-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 10px 0;
}

.floating-banner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 992px) {
  .floating-join-banner {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    margin: 0;
  }
}

/* ── 19. GALLERY GRID, SHOW MORE & MODAL 2026 GLASSMORPHISM ──────────────────────── */
.nw_gallery_section {
  padding-block: 70px;
}

.nw_gallery_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.nw_gallery_item {
  border-radius: var(--r-xl) !important;
  overflow: hidden !important;
  position: relative;
  background: var(--c-canvas-lift);
  box-shadow: var(--sh-sm);
  transition: transform 0.4s var(--e-smooth), box-shadow 0.4s var(--e-smooth);
}

.nw_gallery_item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--sh-lg), 0 16px 36px rgba(200, 16, 46, 0.16);
}

.nw_gallery_image,
.nw_gallery_video {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--r-xl);
  background: #1D252D;
}

.nw_gallery_image img,
.nw_gallery_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--e-smooth);
}

.nw_gallery_item:hover img,
.nw_gallery_item:hover video {
  transform: scale(1.08);
}

.nw_gallery_overlay {
  position: absolute;
  inset: 0;
  background: rgba(29, 37, 45, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.35s var(--e-smooth);
  cursor: pointer;
}

.nw_gallery_item:hover .nw_gallery_overlay {
  opacity: 1;
}

.nw_gallery_icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--c-red-core);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.35s var(--e-bounce);
}

.nw_gallery_item:hover .nw_gallery_icon {
  transform: scale(1);
}

.nw_gallery_actions {
  text-align: center;
  margin-top: 40px;
}

.nw_show_more_btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 16px 42px !important;
  border-radius: var(--r-full) !important;
  background: linear-gradient(135deg, #E4002B 0%, #C8102E 100%) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 10px 28px rgba(228, 0, 43, 0.45) !important;
  cursor: pointer !important;
  transition: all 0.35s var(--e-smooth) !important;
}

.nw_show_more_btn:hover,
.nw_show_more_btn:focus {
  background: linear-gradient(135deg, #FF1A40 0%, #E4002B 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 14px 36px rgba(228, 0, 43, 0.6) !important;
  transform: translateY(-3px) scale(1.02) !important;
}

/* Gallery Modal Glassmorphism Overlay */
.nw_gallery_modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(15, 20, 26, 0.88);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  display: none;
  align-items: center;
  justify-content: center;
}

/* Ensure flex centering when jQuery fadeIn displays the modal */
.nw_gallery_modal[style*="display: block"],
.nw_gallery_modal[style*="display: flex"] {
  display: flex !important;
}

.nw_modal_content {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(29, 37, 45, 0.95);
}

.nw_modal_media img,
.nw_modal_media video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.nw_modal_close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s var(--e-smooth);
}

.nw_modal_close:hover {
  background: var(--c-red-core);
  transform: rotate(90deg);
}

.nw_modal_navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding-inline: 20px;
  pointer-events: none;
}

.nw_nav_btn {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s var(--e-smooth);
}

.nw_nav_btn:hover {
  background: var(--c-red-core);
  border-color: var(--c-red-core);
  transform: scale(1.1);
}
