.ukm-page { color: var(--text-body); padding-bottom: 4rem; }
.hero-ukm { position: relative; padding: 8rem 0 5rem; background: transparent; overflow: hidden; }
.hero-ukm::before { content: ''; position: absolute; top: -30%; right: -15%; width: 700px; height: 700px; background: var(--glow-yellow); border-radius: 50%; animation: pulse 5s ease-in-out infinite; filter: blur(50px); }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.15); opacity: 0.3; } }
.eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary-yellow); font-size: 0.95rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1.5rem; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--primary-yellow); border-radius: 50%; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; color: var(--text-heading); transition: color var(--trans); }
.hero-subtitle { font-size: clamp(1.1rem, 2vw, 1.3rem); color: var(--text-muted); max-width: 800px; line-height: 1.8; }

.breadcrumb-modern { background: transparent; padding: 0; margin-bottom: 3rem; }
.breadcrumb-modern .breadcrumb { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 12px; padding: 1rem 1.5rem; list-style: none; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.breadcrumb-modern .breadcrumb-item { color: var(--text-muted); }
.breadcrumb-modern .breadcrumb-item a { color: var(--primary-yellow); text-decoration: none; font-weight: 600; transition: color 0.3s ease; }
.breadcrumb-modern .breadcrumb-item a:hover { color: var(--uhn-yellow-hover); }
.breadcrumb-modern .breadcrumb-item.active { color: var(--text-heading); }
.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before { content: '›'; padding-right: 0.75rem; color: var(--text-muted); }

.content-section { padding: 5rem 0; }
.section-label { font-size: 0.9rem; color: var(--primary-yellow); font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--text-heading); text-align: center; margin-bottom: 1rem; }
.section-description { text-align: center; color: var(--text-muted); font-size: 1.1rem; margin-bottom: 3rem; }

.orkemas-section { margin-bottom: 5rem; }
.orkemas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }
.orkemas-card { background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: 20px; padding: 3rem 2.5rem; text-align: center; position: relative; overflow: hidden; transition: all 0.4s ease; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.orkemas-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary-yellow) 0%, var(--yellow-soft) 100%); }
.orkemas-card:hover { transform: translateY(-10px); border-color: var(--primary-yellow); box-shadow: 0 20px 50px var(--glow-yellow); }
.orkemas-icon { width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--yellow-soft) 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; box-shadow: 0 10px 30px rgba(241,196,15,0.2); color:#000; }
.orkemas-title { font-size: 1.5rem; font-weight: 700; color: var(--text-heading); margin-bottom: 1rem; }
.orkemas-description { color: var(--text-body); line-height: 1.8; font-size: 1.05rem; }

.ukm-section { margin-top: 5rem; }
.ukm-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.ukm-card { background: var(--bg-card-2); border: 1px solid var(--border-soft); border-radius: 12px; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; transition: all 0.3s ease; cursor: pointer; }
.ukm-card:hover { transform: translateY(-5px); border-color: var(--primary-yellow); box-shadow: 0 10px 30px var(--glow-yellow); background: var(--bg-card); }
.ukm-icon { width: 40px; height: 40px; background: var(--glow-yellow); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--primary-yellow); }
.ukm-card:hover .ukm-icon { background: var(--primary-yellow); color: #000 !important; }
.ukm-card:hover .ukm-icon svg { color: #000 !important; }
.ukm-name { font-size: 0.95rem; font-weight: 600; color: var(--text-body); line-height: 1.4; margin: 0; transition: color 0.3s ease;}
.ukm-card:hover .ukm-name { color: var(--text-heading); }

.scroll-reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) { .hero-ukm { padding: 5rem 0 3rem; } .orkemas-grid { grid-template-columns: 1fr; } .orkemas-card { padding: 2.5rem 2rem; } .ukm-grid { grid-template-columns: 1fr; } }