/* Project Detail Premium Styles */

.project-detail-meta-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 30px 0;
    margin-bottom: 60px;
}
.meta-item {
    margin-right: 60px;
}
.meta-label {
    font-size: 11px;
    font-weight: 700;
    color: #a0aec0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}
.meta-value {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.project-about-section {
    padding-bottom: 60px;
}

.project-about-title {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.project-about-title::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 28px;
    background-color: #3182ce;
    margin-right: 15px;
    border-radius: 4px;
}

.project-main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
    line-height: 1.3;
}

.project-description {
    font-size: 16px;
    color: #718096;
    line-height: 1.8;
}
.project-description p {
    margin-bottom: 20px;
}

/* Sidebar Related Projects */
.related-projects-sidebar {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.04);
    padding: 30px;
}

.related-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}
.related-sidebar-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 20px;
    background-color: #3182ce;
    margin-right: 12px;
    border-radius: 4px;
}

.related-project-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #edf2f7;
    text-decoration: none;
    transition: all 0.3s ease;
}
.related-project-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.related-project-item:hover {
    transform: translateX(5px);
}

.rp-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.rp-info {
    flex: 1;
}
.rp-title {
    font-size: 14px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 5px;
    line-height: 1.4;
}
.rp-cat {
    font-size: 11px;
    color: #a0aec0;
}
.rp-arrow {
    color: #cbd5e0;
    font-size: 14px;
}

/* Project Gallery */
.project-gallery {
    margin-top: 20px;
    margin-bottom: 40px;
}
.gallery-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
