/**
 * shadcn-ui.css - Luxury & Formal Minimalist Design System
 * Tailored for Dinas Kesehatan Situbondo Landing Page
 * Principles: minimalist-ui (warm monochrome, hairlines, extreme whitespace, no heavy drop shadows)
 * Aesthetic: Luxury & Formal (Warm Alabaster Silk, Imperial Obsidian, Brushed Champagne Gold)
 */

/* ==========================================================================
   1. DESIGN SYSTEM TOKENS (LUXURY & FORMAL MINIMALIST)
   ========================================================================== */
:root {
  /* Canvas & Foundations */
  --background: #FAF8F5;          /* Warm Alabaster Silk / Bone */
  --foreground: #0E131F;          /* Imperial Obsidian */

  /* Primary Brand & Formal Authority */
  --primary: #0E131F;             /* Deepest Obsidian Charcoal */
  --primary-hover: #1E2538;
  --primary-foreground: #FFFFFF;

  /* Luxury Accent: Brushed Champagne Gold */
  --gold: #B8976C;                /* Muted Champagne Gold */
  --gold-hover: #A58459;
  --gold-light: #F6F1E9;          /* Soft Gold Tint */
  --gold-border: rgba(184, 151, 108, 0.28);
  --gold-text: #8A6E4B;

  /* Secondary & Linen Tones */
  --secondary: #F3EFE9;           /* Champagne Linen */
  --secondary-hover: #EAE4DA;
  --secondary-foreground: #2A2117;

  /* Surfaces & Hairline Dividers */
  --card: #FFFFFF;
  --card-foreground: #0E131F;

  --muted: #F3EFE9;
  --muted-foreground: #646B79;    /* Refined Warm Slate */

  --accent: #F6F1E9;
  --accent-foreground: #8A6E4B;

  --border: #ECE7E1;              /* Delicate Hairline Divider */
  --input: #ECE7E1;
  --ring: #B8976C;

  /* Typography */
  --font-sans: 'Tenor Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', Georgia, Cambria, 'Times New Roman', serif;

  /* Crisp Minimalist-UI Geometry Scales (No Bubbly Curves) */
  --squircle-hero: 16px;
  --squircle-bento: 12px;
  --squircle-card: 10px;
  --squircle-btn: 6px;            /* Formal Minimalist Button */
  --squircle-icon: 8px;
  --squircle-input: 6px;
  --squircle-badge: 9999px;
  --squircle-portrait: 12px;
  --squircle-accordion: 0px;

  /* Ultra-diffuse Minimalist Shadows (< 0.04 opacity - minimalist-ui negative constraint) */
  --shadow-xs: 0 1px 2px 0 rgba(14, 19, 31, 0.02);
  --shadow-sm: 0 2px 6px 0 rgba(14, 19, 31, 0.03);
  --shadow-md: 0 6px 20px -2px rgba(14, 19, 31, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(14, 19, 31, 0.05);
  --shadow-hero: 0 16px 36px -6px rgba(14, 19, 31, 0.06);
}

/* ==========================================================================
   2. GLOBAL BASE & TYPOGRAPHY
   ========================================================================== */
body {
  font-family: var(--font-sans) !important;
  background-color: #FAF8F5 !important;
  background-image: 
    radial-gradient(100% 65% at 50% 0%, rgba(184, 151, 108, 0.08) 0%, rgba(246, 241, 233, 0.45) 45%, rgba(250, 248, 245, 0) 80%),
    radial-gradient(circle 800px at 95% 20%, rgba(212, 185, 150, 0.07) 0%, transparent 60%),
    radial-gradient(circle 900px at 5% 65%, rgba(184, 151, 108, 0.06) 0%, transparent 65%);
  background-attachment: fixed;
  color: var(--foreground) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans) !important;
  color: var(--foreground) !important;
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* Editorial Serif (Playfair Display) - Luxury & Formal */
.editorial-serif,
.editorial-italic,
.heading-editorial em,
.statement-editorial em,
.section-split-title em,
.section-split-title .editorial-serif {
  font-family: var(--font-serif) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: inherit;
  letter-spacing: -0.01em;
  display: inline-block;
  line-height: 1.15;
  padding-bottom: 0.08em; /* Descender clearance for y, g, j, p, q */
}

/* Metallic Champagne Gold Text Gradient */
.gold-text {
  color: var(--gold-text);
  background: linear-gradient(135deg, #7D613F 0%, #B8976C 40%, #8A6E4B 70%, #A68458 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Luxury Eyebrow Badge (Brushed Champagne Silk Gradient) */
.luxury-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 241, 233, 0.9) 60%, rgba(238, 228, 215, 0.8) 100%);
  border: 1px solid rgba(184, 151, 108, 0.35);
  box-shadow: 0 2px 8px rgba(184, 151, 108, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 6px 18px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

/* ==========================================================================
   3. SHADCN/UI & MINIMALIST COMPONENT PRIMITIVES
   ========================================================================== */

/* --- Buttons (.ui-btn) --- */
.ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border-radius: var(--squircle-btn);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.ui-btn:active {
  transform: scale(0.98);
}

.ui-btn-primary {
  background: linear-gradient(135deg, #1C2436 0%, #0E131F 65%, #080B12 100%);
  color: #FAF8F5;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 14px rgba(14, 19, 31, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ui-btn-primary:hover {
  background: linear-gradient(135deg, #2A364E 0%, #151D2E 65%, #0D121D 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 19, 31, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ui-btn-secondary {
  background: linear-gradient(135deg, #FFFFFF 0%, var(--secondary) 100%);
  color: var(--secondary-foreground);
  border: 1px solid var(--border);
  box-shadow: 0 2px 6px rgba(14, 19, 31, 0.03);
}

.ui-btn-secondary:hover {
  background: linear-gradient(135deg, #FFFFFF 0%, #EFE8DC 100%);
  border-color: var(--gold-border);
  color: var(--secondary-foreground);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 151, 108, 0.12);
}

.ui-btn-outline {
  background: linear-gradient(135deg, #FFFFFF 0%, #FAF8F5 100%);
  border: 1px solid #D5CECA;
  color: var(--foreground);
  box-shadow: 0 2px 6px rgba(14, 19, 31, 0.02);
}

.ui-btn-outline:hover {
  background: linear-gradient(135deg, #FAF8F5 0%, #F5EFE6 100%);
  border-color: var(--gold);
  color: var(--foreground);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(184, 151, 108, 0.14);
}

.ui-btn-gold {
  background: linear-gradient(135deg, #C5A880 0%, #B8976C 50%, #A68458 100%);
  border: 1px solid rgba(184, 151, 108, 0.5);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(184, 151, 108, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.ui-btn-gold:hover {
  background: linear-gradient(135deg, #CFB28A 0%, #C09F74 50%, #AE8B5E 100%);
  border-color: rgba(184, 151, 108, 0.7);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(184, 151, 108, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.ui-btn-ghost {
  background-color: transparent;
  color: var(--foreground);
}

.ui-btn-ghost:hover {
  background-color: var(--muted);
  color: var(--foreground);
}

/* Button Sizes */
.ui-btn-sm {
  height: 36px;
  padding: 0 16px;
  font-size: 12.5px;
  border-radius: var(--squircle-btn);
}

.ui-btn-md {
  height: 44px;
  padding: 0 22px;
  font-size: 13.5px;
  border-radius: var(--squircle-btn);
}

.ui-btn-lg {
  height: 50px;
  padding: 0 28px;
  font-size: 14.5px;
  border-radius: var(--squircle-btn);
}

.ui-btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
}

/* --- Badges (.ui-badge) --- */
.ui-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--squircle-badge);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ui-badge-secondary {
  background-color: var(--gold-light);
  color: var(--gold-text);
  border: 1px solid var(--gold-border);
}

.ui-badge-outline {
  background-color: #FFFFFF;
  color: var(--muted-foreground);
  border: 1px solid var(--border);
}

.ui-badge-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

/* --- Cards (.ui-card) (Luxury Silk Gradient & Hairline Border) --- */
.ui-card {
  background: linear-gradient(145deg, #FFFFFF 0%, #FDFBF8 100%);
  border: 1px solid var(--border);
  border-radius: var(--squircle-card);
  box-shadow: 0 2px 8px rgba(14, 19, 31, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.ui-card:hover {
  box-shadow: 0 12px 30px rgba(184, 151, 108, 0.12), 0 2px 8px rgba(14, 19, 31, 0.03);
  border-color: rgba(184, 151, 108, 0.6);
  transform: translateY(-3px);
}

.ui-card-featured {
  background: linear-gradient(145deg, #FFFFFF 0%, #FAF4E8 100%) !important;
  border: 1px solid rgba(184, 151, 108, 0.55) !important;
  box-shadow: 0 12px 32px -2px rgba(184, 151, 108, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.ui-card-featured:hover {
  box-shadow: 0 16px 40px rgba(184, 151, 108, 0.22) !important;
}

.ui-card-header {
  padding: 24px 24px 12px 24px;
}

.ui-card-title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 8px;
  line-height: 1.35;
}

.ui-card-description {
  font-size: 14px;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 0;
}

.ui-card-content {
  padding: 0 24px 20px 24px;
  flex-grow: 1;
}

.ui-card-footer {
  padding: 16px 24px 24px 24px;
  display: flex;
  align-items: center;
}

/* --- Form Inputs (.ui-input) --- */
.ui-input {
  height: 46px;
  padding: 0 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  border-radius: var(--squircle-input);
  border: 1px solid var(--border);
  background-color: var(--card);
  color: var(--foreground);
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
}

.ui-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(184, 151, 108, 0.18);
}

.ui-input::placeholder {
  color: #A0A5B2;
}

/* --- Accordion (.ui-accordion) - Pure Minimalist Divider Style --- */
.ui-accordion-item {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
  transition: all 0.2s ease;
}

.ui-accordion-item:first-child {
  border-top: 1px solid var(--border);
}

.ui-accordion-item:hover {
  background: linear-gradient(90deg, rgba(246, 241, 233, 0.5) 0%, rgba(250, 248, 245, 0.05) 100%);
  border-bottom-color: var(--gold);
}

.ui-accordion-trigger {
  width: 100%;
  padding: 24px 8px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
}

.ui-accordion-trigger:hover {
  color: var(--gold-text);
}

.ui-accordion-trigger i {
  color: var(--gold);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 18px;
}

.ui-accordion-trigger[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.ui-accordion-content {
  padding: 0 8px 24px 8px;
  color: var(--muted-foreground);
  font-size: 14.5px;
  line-height: 1.7;
}

/* ==========================================================================
   4. SECTIONS SPECIFIC TO LUXURY & FORMAL DANANTARA
   ========================================================================== */

/* --- Navbar Overrides --- */
.danantara-navbar {
  background: linear-gradient(180deg, rgba(250, 248, 245, 0.96) 0%, rgba(246, 241, 233, 0.92) 100%) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184, 151, 108, 0.2);
  box-shadow: 0 4px 20px rgba(184, 151, 108, 0.04);
  padding: 16px 0;
  transition: all 0.3s ease;
}

.danantara-brand {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--foreground) !important;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.danantara-brand span {
  color: var(--gold-text);
}

.danantara-navlink {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--foreground) !important;
  padding: 8px 16px !important;
  transition: color 0.2s ease;
}

.danantara-navlink:hover {
  color: var(--gold-text) !important;
}

.danantara-navbar .navmenu a,
.danantara-navbar .navmenu a:focus {
  color: var(--muted-foreground);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.danantara-navbar .navmenu a:hover,
.danantara-navbar .navmenu li:hover > a,
.danantara-navbar .navmenu .active,
.danantara-navbar .navmenu .active:focus {
  color: var(--foreground);
}

.danantara-navbar .navmenu > ul > li > a:before {
  background-color: var(--gold);
  height: 2px;
  bottom: -4px;
}

/* --- Hero Section (Macro-Whitespace: 104px, Luxury Ambient Spotlight) --- */
.hero-danantara {
  position: relative;
  padding: 104px 0 72px 0;
  text-align: center;
  background: 
    radial-gradient(85% 60% at 50% -10%, rgba(212, 175, 55, 0.12) 0%, rgba(246, 241, 233, 0.55) 45%, rgba(250, 248, 245, 0.95) 85%, #FAF8F5 100%),
    linear-gradient(180deg, #FAF8F5 0%, #F8F4EE 60%, #FAF8F5 100%);
  overflow: hidden;
}

.hero-danantara::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(184, 151, 108, 0.16) 0%, rgba(246, 241, 233, 0.08) 50%, transparent 75%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero-danantara > .container {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  background-color: var(--gold-light);
  border: 1px solid var(--gold-border);
  padding: 6px 18px;
  border-radius: 9999px;
  margin-bottom: 24px;
}

.hero-danantara h1 {
  font-size: 50px;
  line-height: 1.2;
  max-width: 980px;
  margin: 0 auto 24px auto;
  font-weight: 100;
  color: var(--foreground);
  letter-spacing: -0.025em;
}

@media (max-width: 992px) {
  .hero-danantara h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero-danantara h1 {
    font-size: 30px;
  }
}

.hero-danantara .hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted-foreground);
  max-width: 720px;
  margin: 0 auto 36px auto;
}

.hero-danantara .hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 54px;
}

@media (max-width: 576px) {
  .hero-danantara .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-danantara .hero-actions .ui-btn {
    width: 100%;
  }
}

/* --- Partner / Ecosystem Strip (Refined Monochrome Muted) --- */
.partner-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 10px 0 54px 0;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-strip:hover {
  opacity: 0.9;
  filter: grayscale(20%);
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--foreground);
  letter-spacing: 0.3px;
}

.partner-item i {
  font-size: 18px;
  color: var(--gold-text);
}

/* --- Hero Large Media Card (Double-Bezel Architecture & Luxury Satin Frame) --- */
.hero-media-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 241, 233, 0.85) 50%, rgba(235, 222, 204, 0.65) 100%);
  border: 1px solid rgba(184, 151, 108, 0.35);
  border-radius: calc(var(--squircle-hero) + 8px);
  box-shadow: 0 20px 50px rgba(184, 151, 108, 0.12), 0 4px 16px rgba(14, 19, 31, 0.03);
}

.hero-media-card {
  position: relative;
  width: 100%;
  height: 500px;
  max-height: 540px;
  border-radius: var(--squircle-hero);
  overflow: hidden;
  border: 1px solid rgba(14, 19, 31, 0.05);
}

@media (max-width: 992px) {
  .hero-media-card {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .hero-media-card {
    height: 260px;
  }
}

.hero-media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media-card:hover img {
  transform: scale(1.025);
}

.hero-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 19, 31, 0.04) 0%, rgba(14, 19, 31, 0.45) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Play Button - Minimalist Gold & Obsidian Gradient */
.play-btn-danantara {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, rgba(30, 39, 56, 0.9) 0%, rgba(14, 19, 31, 0.95) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8D8C3;
  font-size: 24px;
  box-shadow: 0 10px 30px rgba(14, 19, 31, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: pulse-ring-luxury 2.5s infinite;
  transition: all 0.25s ease;
  text-decoration: none;
}

.play-btn-danantara i {
  margin-left: 3px;
}

.play-btn-danantara:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #C5A880 0%, #B8976C 50%, #A68458 100%);
  border-color: #E8D8C3;
  color: #FFFFFF;
  box-shadow: 0 14px 36px rgba(184, 151, 108, 0.4);
}

@keyframes pulse-ring-luxury {
  0% {
    box-shadow: 0 0 0 0 rgba(184, 151, 108, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(184, 151, 108, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(184, 151, 108, 0);
  }
}

/* --- Statement Section (Macro-Whitespace: 110px, Luxury Silk Gradient) --- */
.statement-section {
  position: relative;
  padding: 110px 0;
  background: 
    radial-gradient(70% 50% at 50% 50%, rgba(255, 255, 255, 0.6) 0%, transparent 80%),
    linear-gradient(180deg, #FAF8F5 0%, #F5EFE6 50%, #FAF8F5 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement-headline {
  font-size: 27px;
  line-height: 1.55;
  font-weight: 600;
  color: var(--foreground);
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  letter-spacing: -0.015em;
}

.statement-ornament {
  display: inline-block;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .statement-headline {
    font-size: 20px;
  }
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 24px;
  align-items: stretch;
}

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

.bento-item {
  position: relative;
  border-radius: var(--squircle-bento);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--border);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: #FFFFFF;
}

.bento-item:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.bento-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.bento-item:hover img {
  transform: scale(1.04);
}

.bento-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 19, 31, 0.02) 20%, rgba(14, 19, 31, 0.75) 100%);
}

/* Floating Squircle Stat Badge */
.bento-stat-box {
  position: relative;
  z-index: 2;
  margin: 18px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(236, 231, 225, 0.85);
}

.bento-stat-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-text);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.bento-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/* Floating Pill Badge for Middle Bento Card */
.bento-pill-top {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(236, 231, 225, 0.85);
}

.bento-pill-icon {
  width: 32px;
  height: 32px;
  background-color: var(--gold-light);
  color: var(--gold-text);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.bento-pill-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.35;
}
/* --- Strategi & Program Section (Macro-Whitespace: 110px, Luxury Ambient Mesh) --- */
.strategy-section {
  padding: 110px 0;
  background: 
    radial-gradient(90% 60% at 50% 0%, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.9) 60%, rgba(246, 241, 233, 0.65) 100%),
    linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-split-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .section-split-header {
    flex-direction: column;
    gap: 16px;
  }
}

.section-split-title h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: var(--foreground);
}

.section-split-title p.subtitle {
  font-size: 11.5px;
  color: var(--gold-text);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-split-desc {
  max-width: 480px;
  font-size: 14.5px;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin: 0;
}

/* Strategy Grid */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

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

.strategy-item {
  padding: 34px 30px;
  border-radius: var(--squircle-card);
  background: linear-gradient(145deg, #FFFFFF 0%, #FDFBF8 100%);
  border: 1px solid rgba(236, 231, 225, 0.9);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(14, 19, 31, 0.02);
}

.strategy-item:hover {
  background: linear-gradient(145deg, #FFFFFF 0%, #FAF5ED 100%);
  border-color: rgba(184, 151, 108, 0.6);
  box-shadow: 0 12px 30px rgba(184, 151, 108, 0.12), 0 2px 8px rgba(14, 19, 31, 0.03);
  transform: translateY(-3px);
}

/* Minimalist Icon Tile (Champagne Metallic Gradient) */
.strategy-icon-tile {
  width: 50px;
  height: 50px;
  border-radius: var(--squircle-icon);
  background: linear-gradient(135deg, #FAF5ED 0%, #EDE3D4 100%);
  color: var(--gold-text);
  border: 1px solid rgba(184, 151, 108, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(184, 151, 108, 0.08);
  transition: all 0.25s ease;
}

.strategy-item:hover .strategy-icon-tile {
  transform: scale(1.06);
  background: linear-gradient(135deg, #1E2738 0%, #0E131F 100%);
  color: #E8D8C3;
  border-color: #0E131F;
  box-shadow: 0 4px 14px rgba(14, 19, 31, 0.25);
}

.strategy-title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 10px;
}

.strategy-desc {
  font-size: 13.5px;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-bottom: 0;
}

/* --- Leadership Quote Section (Macro-Whitespace: 110px, Luxury Silk Gradient) --- */
.quote-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #F8F4EE 0%, #FAF8F5 50%, #F5EFE6 100%);
  border-top: 1px solid var(--border);
  position: relative;
}

.quote-container {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1060px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFFFFF 0%, #FCFAF7 60%, #F9F4EB 100%);
  border: 1px solid rgba(184, 151, 108, 0.35);
  border-radius: 16px;
  padding: 56px 64px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 45px rgba(184, 151, 108, 0.1), 0 4px 12px rgba(14, 19, 31, 0.02);
}

@media (max-width: 992px) {
  .quote-container {
    flex-direction: column;
    text-align: center;
    gap: 36px;
    padding: 36px 24px;
  }
}

.quote-portrait-col {
  flex-shrink: 0;
  position: relative;
}

/* Minimalist Formal Portrait Frame (Double-Bezel Champagne Satin Frame) */
.quote-portrait-wrapper {
  position: relative;
  width: 216px;
  height: 216px;
  padding: 8px;
  background: linear-gradient(145deg, #FFFFFF 0%, #F6F1E9 100%);
  border: 1px solid rgba(184, 151, 108, 0.45);
  border-radius: calc(var(--squircle-portrait) + 8px);
  box-shadow: 0 10px 28px rgba(184, 151, 108, 0.12);
}

.quote-portrait-halo,
.quote-portrait-halo-outer {
  display: none; /* Minimalist-ui: eliminate bubbly decorative halos */
}

.quote-portrait-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: var(--squircle-portrait);
  overflow: hidden;
  border: 1px solid var(--border);
}

.quote-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-text-col {
  flex-grow: 1;
}

.quote-mark {
  font-size: 48px;
  line-height: 1;
  color: var(--gold);
  font-family: var(--font-serif);
  margin-bottom: 12px;
  display: block;
}

.quote-statement {
  font-size: 19.5px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--foreground);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .quote-statement {
    font-size: 17.5px;
  }
}

.quote-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 3px;
}

.quote-author-title {
  font-size: 12px;
  color: var(--gold-text);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* --- News & Insight Section (Macro-Whitespace: 110px, Luxury Ambient Soft Gradient) --- */
.news-section {
  padding: 110px 0;
  background: 
    radial-gradient(100% 60% at 50% 0%, rgba(246, 241, 233, 0.5) 0%, rgba(255, 255, 255, 0.8) 50%, #FAF8F5 100%),
    linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
  border-top: 1px solid var(--border);
}

.news-card-img-wrapper {
  position: relative;
  width: calc(100% - 24px);
  margin: 12px 12px 0 12px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF5ED 0%, #EDE3D4 100%);
  border: 1px solid var(--border);
}

.news-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ui-card:hover .news-card-img-wrapper img {
  transform: scale(1.04);
}

.news-date {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

/* --- PPID Accordion Section (Macro-Whitespace: 110px, Luxury Silk Gradient) --- */
.faq-section {
  padding: 110px 0;
  background: 
    radial-gradient(85% 65% at 50% 10%, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.85) 60%, rgba(246, 241, 233, 0.6) 100%),
    linear-gradient(180deg, #FAF8F5 0%, #F6F1E9 100%);
  border-top: 1px solid var(--border);
}

/* --- Modern Footer Overrides (Luxury Silk Gradient) --- */
.danantara-footer {
  background: linear-gradient(180deg, #FAF8F5 0%, #FFFFFF 30%, #F7F3EC 100%);
  border-top: 1px solid rgba(184, 151, 108, 0.2);
  padding: 90px 0 36px 0;
}

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: 12px;
}

.footer-links-list a {
  font-size: 13.5px;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--gold-text);
}

.footer-bottom-bar {
  border-top: 1px solid var(--border);
  margin-top: 60px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-text {
  font-size: 12.5px;
  color: var(--muted-foreground);
  margin: 0;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: var(--background);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--foreground);
  text-decoration: none;
  font-size: 13.5px;
  transition: all 0.2s ease;
}

.footer-social-link:hover {
  background-color: var(--foreground);
  color: #E8D8C3;
  border-color: var(--foreground);
  transform: translateY(-2px);
}
