/* ========================================
   MODERN NEWS DETAIL PAGE 2025
   SEO & Mobile Optimized
   ======================================== */

/* Hero Section */
.modern-news-detail-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    overflow: hidden;
}

.detail-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Modern Breadcrumb */
.modern-breadcrumb {
    margin-bottom: 32px;
}

.modern-breadcrumb .breadcrumb {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid #e8eef5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin: 0;
    gap: 4px;
}

.modern-breadcrumb .breadcrumb-item {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: #ff5e15;
    background: rgba(255, 94, 21, 0.06);
}

.modern-breadcrumb .breadcrumb-item a i {
    font-size: 13px;
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #002052;
    font-weight: 700;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(0, 32, 82, 0.08) 0%, rgba(0, 32, 82, 0.04) 100%);
    border-radius: 8px;
}

.modern-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #cbd5e1;
    padding: 0 8px;
    font-size: 16px;
    font-weight: 400;
}

/* News Category Badge */
.news-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ff5e15;
    border-radius: 8px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(255, 94, 21, 0.25);
}

.news-category-badge i {
    color: #ffffff;
    font-size: 14px;
}

.news-category-badge span {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Title */
.detail-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #002052;
    margin: 0 0 24px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

/* News Meta Info */
.news-meta-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.meta-item i {
    color: #ff5e15;
    font-size: 14px;
}

/* Hero Background Decoration */
.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 94, 21, 0.08) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 32, 82, 0.06) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 30px) scale(1.05); }
}

/* News Detail Content */
.modern-news-detail-content {
    padding: 80px 0 100px;
    background: #ffffff;
}

/* Main Content */
.detail-main-content {
    padding-right: 40px;
}

/* News Image */
.detail-image-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 32, 82, 0.15);
    margin-bottom: 48px;
}

.detail-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* News Description */
.detail-description {
    margin-bottom: 48px;
}

.description-title {
    font-size: 36px;
    font-weight: 800;
    color: #002052;
    margin-bottom: 28px;
    line-height: 1.2;
}

.title-gradient {
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.description-text {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}

.description-text p {
    margin-bottom: 20px;
}

.description-text h1,
.description-text h2,
.description-text h3 {
    color: #002052;
    margin-top: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.description-text ul,
.description-text ol {
    margin: 20px 0;
    padding-left: 24px;
}

.description-text li {
    margin-bottom: 12px;
}

/* Share Box */
.news-share-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 32px 40px;
    background: linear-gradient(135deg, #f8f9fb 0%, #ffffff 100%);
    border-radius: 20px;
    border: 2px solid #e8eef5;
}

.share-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.share-content i {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.share-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #002052;
    margin: 0 0 4px 0;
}

.share-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0a66c2;
}

.share-btn.whatsapp {
    background: #25d366;
}

/* Sidebar */
.detail-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #002052;
    margin: 0 0 24px 0;
}

.sidebar-title i {
    color: #ff5e15;
    font-size: 22px;
}

/* Sidebar News */
.sidebar-news {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-news-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 94, 21, 0.1);
    transition: all 0.3s ease;
}

.sidebar-news-item:hover {
    background: rgba(255, 94, 21, 0.05);
    border-color: rgba(255, 94, 21, 0.2);
    transform: translateX(8px);
}

.sidebar-news-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-news-info {
    flex: 1;
}

.sidebar-news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #ff5e15;
    margin-bottom: 6px;
}

.sidebar-news-date i {
    font-size: 10px;
}

.sidebar-news-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: #002052;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-news-item > i {
    color: #ff5e15;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.sidebar-news-item:hover > i {
    transform: translateX(4px);
}

/* Contact Box */
.contact-box {
    background: linear-gradient(135deg, #002052 0%, #003875 100%);
    text-align: center;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 94, 21, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ff5e15;
    font-size: 36px;
}

.contact-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 12px 0;
}

.contact-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #ff5e15 0%, #ff8a4d 100%);
    color: white;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(255, 94, 21, 0.3);
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: white;
    color: #ff5e15;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 94, 21, 0.4);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .detail-main-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .detail-sidebar {
        position: relative;
        top: 0;
    }
    
    .news-share-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }
    
    .share-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .modern-news-detail-hero {
        padding: 100px 0 60px;
    }
    
    .detail-hero-title {
        font-size: 32px;
    }
    
    .news-meta-info {
        gap: 16px;
    }
    
    .meta-item {
        font-size: 13px;
    }
    
    .modern-news-detail-content {
        padding: 60px 0;
    }
    
    .description-title {
        font-size: 28px;
    }
    
    .description-text {
        font-size: 16px;
    }
    
    .share-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .modern-news-detail-hero {
        padding: 80px 0 40px;
    }
    
    .detail-hero-title {
        font-size: 26px;
    }
    
    .modern-breadcrumb .breadcrumb {
        padding: 12px 20px;
        font-size: 13px;
        flex-wrap: wrap;
        gap: 2px;
    }
    
    .modern-breadcrumb .breadcrumb-item a,
    .modern-breadcrumb .breadcrumb-item.active {
        padding: 4px 8px;
        font-size: 12px;
    }
    
    .news-category-badge {
        padding: 8px 16px;
    }
    
    .news-category-badge span {
        font-size: 11px;
    }
    
    .news-meta-info {
        flex-direction: column;
        gap: 12px;
    }
    
    .description-title {
        font-size: 24px;
    }
    
    .description-text {
        font-size: 15px;
    }
    
    .sidebar-box {
        padding: 24px 20px;
    }
    
    .sidebar-news-image {
        width: 64px;
        height: 64px;
    }
    
    .sidebar-news-info h4 {
        font-size: 14px;
    }
    
    .share-content i {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .share-text h3 {
        font-size: 16px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .contact-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .contact-box h3 {
        font-size: 20px;
    }
}
