
    /* ============================================
   BLOG DETAILS PAGE - BLACK/GOLD THEME
   ============================================ */

    .blog-details-page {
        background: #f8f9fa;
    }

    /* Blog Header */
    .blog-header-section {
        background: #000000;
        position: relative;
        padding: 60px 0;
        margin-top: -1px;
    }

    .blog-header-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    }

    .blog-header-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffc107, transparent);
    }

    .blog-header-content {
        position: relative;
        z-index: 1;
    }

    .blog-badge {
        display: inline-block;
        background: rgba(255, 193, 7, 0.15);
        color: #ffc107;
        padding: 6px 18px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        margin-bottom: 20px;
        border: 1px solid rgba(255, 193, 7, 0.3);
    }

    .blog-header-content h1 {
        font-size: 2.2rem;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .blog-meta {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .blog-meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
    }

    .blog-meta-item i {
        color: #ffc107;
    }

    .breadcrumb-nav {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-top: 15px;
    }

    .breadcrumb-nav a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.3s;
    }

    .breadcrumb-nav a:hover {
        color: #ffc107;
    }

    .breadcrumb-nav span {
        color: rgba(255, 255, 255, 0.4);
    }

    .breadcrumb-nav .active {
        color: #ffc107;
    }

    /* Main Content */
    .blog-main-content {
        padding: 80px 0;
    }

    /* Blog Post */
    .blog-post {
        background: #ffffff;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .blog-post-image {
        position: relative;
        overflow: hidden;
    }

    .blog-post-image img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .blog-post:hover .blog-post-image img {
        transform: scale(1.02);
    }

    .blog-post-content {
        padding: 35px;
    }

    .blog-post-content p {
        color: #4a5568;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .blog-post-content h2,
    .blog-post-content h3,
    .blog-post-content h4 {
        color: #000000;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .blog-post-content img {
        border-radius: 16px;
        margin: 20px 0;
    }

    /* Sidebar */
    .blog-sidebar {
        position: sticky;
        top: 100px;
    }

    .sidebar-widget {
        background: #ffffff;
        border-radius: 20px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .sidebar-widget:last-child {
        margin-bottom: 0;
    }

    .widget-title {
        font-size: 1.3rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 12px;
    }

    .widget-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #ffc107, #ffed4e);
        border-radius: 3px;
    }

    /* Recent Posts */
    .recent-posts {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .recent-post-item {
        display: flex;
        gap: 15px;
        align-items: center;
        padding: 10px;
        background: #f8f9fa;
        border-radius: 14px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .recent-post-item:hover {
        background: #ffffff;
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.1);
        border-left: 3px solid #ffc107;
    }

    .recent-post-img {
        width: 70px;
        height: 70px;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
    }

    .recent-post-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .recent-post-content h6 {
        font-size: 0.9rem;
        font-weight: 700;
        color: #000000;
        margin-bottom: 5px;
        line-height: 1.4;
    }

    .recent-post-content span {
        font-size: 0.7rem;
        color: #ffc107;
        font-weight: 500;
    }

    /* Share Widget */
    .share-widget {
        text-align: center;
    }

    .share-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        color: #000000;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .share-btn:hover {
        background: #ffc107;
        color: #000000;
        transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .blog-header-section {
            padding: 50px 0;
        }

        .blog-header-content h1 {
            font-size: 1.8rem;
        }

        .blog-main-content {
            padding: 60px 0;
        }

        .blog-post-content {
            padding: 25px;
        }

        .blog-sidebar {
            position: relative;
            top: 0;
            margin-top: 40px;
        }
    }

    @media (max-width: 768px) {
        .blog-header-section {
            padding: 40px 0;
        }

        .blog-header-content h1 {
            font-size: 1.5rem;
        }

        .blog-main-content {
            padding: 50px 0;
        }

        .blog-post-content {
            padding: 20px;
        }

        .blog-post-content p {
            font-size: 0.95rem;
        }

        .widget-title {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 576px) {
        .blog-header-content h1 {
            font-size: 1.3rem;
        }

        .blog-meta {
            gap: 12px;
        }

        .blog-meta-item {
            font-size: 0.7rem;
        }

        .blog-main-content {
            padding: 40px 0;
        }

        .blog-post-content {
            padding: 15px;
        }

        .recent-post-img {
            width: 60px;
            height: 60px;
        }

        .recent-post-content h6 {
            font-size: 0.8rem;
        }
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .blog-post,
    .sidebar-widget {
        animation: fadeInUp 0.6s ease forwards;
    }
