/* Rightbar Sidebar Components Styles — WallPrintBox brand
   navy #0F1B3D / orange #FF6B35 / yellow #FFD23F */

.sidebar-card {
    background-color: #ffffff;
    border: 1px solid #E6EAF1;
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 18px rgba(15, 27, 61, 0.06);
}

.sidebar-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #0F1B3D;
    border-bottom: 3px solid #FF6B35;
    padding-bottom: 10px;
}

/* Popular Posts & Latest Posts */
.post-list-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #E6EAF1;
}

.post-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.post-thumbnail {
    width: 84px;
    height: 62px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.post-info {
    flex: 1;
}

.post-title-small {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0F1B3D;
    line-height: 1.35;
    text-decoration: none;
    display: block;
    transition: color 0.25s ease;
}

.post-title-small:hover {
    color: #FF6B35;
}

.post-date {
    font-size: 0.78rem;
    color: #5B6577;
}

/* Contact Form Sidebar — navy card, orange CTA */
.contact-form-sidebar {
    background: linear-gradient(135deg, #0F1B3D 0%, #1B2D5C 100%);
    border-radius: 14px;
    padding: 30px;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 8px 26px rgba(15, 27, 61, 0.18);
}

.contact-form-sidebar h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-form-sidebar p {
    font-size: 0.9rem;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-form-sidebar .form-label {
    font-weight: 600;
    margin-bottom: 7px;
    font-size: 0.85rem;
    color: #ffffff;
}

.contact-form-sidebar .form-control {
    background-color: rgba(255, 255, 255, 0.96);
    border: none;
    padding: 11px 13px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.contact-form-sidebar .form-control:focus {
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.35);
    outline: none;
}

.submit-btn-sidebar {
    background-color: #FF6B35;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 13px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    width: 100%;
    font-size: 1rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.submit-btn-sidebar:hover {
    background-color: #e85a26;
    transform: translateY(-2px);
}

.trust-badges {
    margin-top: 18px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.9);
}

.trust-badges div {
    margin-bottom: 7px;
}

/* Responsive — sidebar stacks below content on tablet/mobile (Bootstrap col-lg) */
@media (max-width: 991px) {
    .sidebar-card,
    .contact-form-sidebar {
        margin-bottom: 20px;
    }
}
