/* ================================================================
   MODERN PREMIUM 2025 - GILDED GLASS EDITION
   ================================================================ */

:root {
    --article-max-w: 820px;
    --article-line-h: 1.85;
    --article-spacing: 2.25rem;
    --gilded-glass-bg: rgba(255, 255, 255, 0.75);
    --gilded-glass-border: rgba(255, 255, 255, 0.9);
    --gilded-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), inset 0 2px 4px rgba(255,255,255,0.8);
}

/* 1. Global Optimization */
html, body { font-display: swap !important; }

/* Ambient Background for Gilded Glass Effect */
.ambient-wrapper {
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}
.ambient-wrapper::before, .ambient-wrapper::after {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}
.ambient-wrapper::before { top: -100px; left: -150px; background: rgba(37, 99, 235, 0.15); }
.ambient-wrapper::after { bottom: -200px; right: -100px; background: rgba(251, 191, 36, 0.15); }

/* 2. Hero Header - Dynamic Gilded */
.detail-hero { 
    padding: 5rem 5% 8rem !important; 
    text-align: center;
    background: linear-gradient(145deg, #020617 0%, #0f172a 35%, #1e3a8a 100%) !important;
    position: relative;
    border-bottom: 3px solid #fbbf24;
    color: white;
    overflow: hidden;
}

.detail-hero::before {
    content: ''; position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 60%);
    z-index: 1;
    animation: slowPulse 8s ease-in-out infinite alternate;
}

@keyframes slowPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 1; }
}

.detail-hero h1 { 
    font-size: 3rem !important; 
    max-width: 1100px; margin: 0 auto 2rem !important;
    line-height: 1.15 !important; letter-spacing: -0.03em !important;
    font-weight: 900 !important; color: #ffffff !important;
    text-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: relative; z-index: 5;
}

/* 3. True Apple Frosted Glass (Gilded Glass) */
.detail-column-main { 
    min-width: 0; 
    background: var(--gilded-glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 4.5rem;
    border-radius: 30px;
    box-shadow: var(--gilded-shadow);
    border: 1px solid var(--gilded-glass-border);
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

/* 4. Form Inputs */
.premium-input-style { 
    background: rgba(255, 255, 255, 0.95) !important; 
    backdrop-filter: blur(10px);
    border: 2px solid rgba(148, 163, 184, 0.3) !important; 
    padding: 1.25rem !important; 
    border-radius: 16px !important; 
    font-family: inherit; font-weight: 600; 
    color: var(--blue-950) !important; 
    transition: var(--trans-ease); 
    width: 100%; 
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02), 0 4px 6px rgba(0,0,0,0.02);
    opacity: 1 !important;
}
.premium-input-style:focus { 
    background: #ffffff !important; 
    border-color: #fbbf24 !important; 
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15), inset 0 2px 4px rgba(0,0,0,0.02) !important; 
    outline: none !important; 
}

/* 5. Gilded Typography (Gold Gradient) */
.text-gold-gradient {
    background: linear-gradient(135deg, #d4af37 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Premium Gold Badge */
.premium-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--blue-950);
    font-size: 0.8rem;
    font-weight: 900;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    margin-bottom: 2rem;
    border: 2px solid rgba(255,255,255,0.2);
}

/* Editorial Drop Cap */
.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 900;
    color: var(--gold-500);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
    text-shadow: 2px 2px 0px rgba(251, 191, 36, 0.2);
}

/* Premium Blockquote */
.detail-body blockquote {
    background: transparent;
    padding: 2.5rem 3rem;
    border-left: 0;
    border-radius: 20px;
    font-style: italic;
    color: var(--blue-950);
    margin: 4rem 0;
    font-size: 1.5rem;
    line-height: 1.6;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(255,255,255,0.8);
}
.detail-body blockquote::before {
    content: '"';
    position: absolute;
    top: -20px; left: 20px;
    font-size: 6rem;
    color: var(--gold-300);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

/* 6. Asymmetrical Layout Utilities */
.gilded-bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
.gilded-sticky-col {
    position: sticky;
    top: 2rem;
}

/* Timeline Prosedur */
.gilded-timeline { border-left: 2px solid var(--blue-100); padding-left: 2rem; margin-top: 2rem; }
.gilded-step { position: relative; margin-bottom: 2.5rem; transition: var(--trans-ease); }
.gilded-step::before {
    content: ''; position: absolute;
    left: -2.6rem; top: 0; width: 20px; height: 20px;
    background: var(--gold-400); border-radius: 50%;
    border: 4px solid white; box-shadow: 0 0 0 2px var(--blue-100);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gilded-step:hover::before {
    border-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.35);
    background: #fbbf24;
}

/* Survey Grid Horizontal */
.survey-row-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* 7. Micro-Animations */
.hover-lift-3d {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.hover-lift-3d:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Breadcrumbs (Unchanged) */
.detail-hero .breadcrumbs {
    display: inline-flex !important; align-items: center; gap: 12px;
    padding: 8px 24px !important; background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15) !important; border-radius: 50px !important;
    margin: 0 auto 1.5rem !important; font-size: 0.75rem !important; font-weight: 800 !important;
    letter-spacing: 1.5px !important; text-transform: uppercase; color: rgba(255, 255, 255, 0.8) !important;
    position: relative; z-index: 10;
}
.detail-hero .breadcrumbs a { color: #fbbf24 !important; text-decoration: none; transition: 0.3s; }
.detail-hero .breadcrumbs a:hover { color: #ffffff !important; transform: translateY(-1px); }
.detail-hero .breadcrumbs i { color: rgba(255,255,255,0.4); font-size: 10px; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .gilded-bento-grid { grid-template-columns: 1fr; }
    .gilded-sticky-col { position: relative; top: 0; }
    .survey-row-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .detail-column-main { padding: 2.5rem 1.5rem; border-radius: 20px; }
    .detail-hero h1 { font-size: 2.2rem !important; }
    .survey-row-grid { grid-template-columns: 1fr; }
}

/* 8. Premium Card Gold Hover */
.premium-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}
.premium-card:hover {
    transform: translateY(-8px) !important;
    border-color: #fbbf24 !important;
    box-shadow: 0 0 0 1px #fbbf24, 0 20px 40px -10px rgba(0, 31, 63, 0.15) !important;
}
